@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  padding: 0;
  margin: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section,
pre, code {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

*:hover,
*:focus,
*:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/*===========================
  All
===========================*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

/*===========================
  Anchor
===========================*/
a {
  text-decoration: none;
}

.aWrapper {
  line-height: 0;
}

.aWrapper:not(:first-child) {
  margin-top: 20px;
}

/*
<div class="aWrapper">
  <a href="" class="linkBtn">リンク</a>
</div>
*/
/*===========================
  Figure
===========================*/
figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
}

figure img {
  width: 100%;
  height: auto;
}

img {
  vertical-align: bottom;
}

/*===========================
  Video
===========================*/
.videoWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
}

header video,
main video,
footer video {
  width: 100%;
  height: auto;
}

/*
// 自動再生（操作なし）
<div class="videoWrapper">
  <video src="" autoplay muted loop></video>
</div>
// 操作あり
<div class="videoWrapper">
  <video src="" autoplay loop controls></video>
</div>
*/
/*===========================
  Table
===========================*/
table {
  border-collapse: collapse;
}

/*===========================
  Canvas
===========================*/
canvas {
  vertical-align: bottom;
}

/*===========================
  Source code
===========================*/
pre, code {
  text-align: left;
}

code ol.linenums {
  list-style: inside;
}

code ol.linenums li {
  list-style-type: decimal-leading-zero;
}

pre {
  border-top: 2px solid #eeeeee;
  border-top-style: inset;
  border-right: 2px solid #eeeeee;
  border-bottom: 2px solid #eeeeee;
  border-left: 2px solid #eeeeee;
  border-left-style: inset;
  padding: 5px;
}

pre:not(:first-child) {
  margin-top: 30px;
}

/*
<pre><code class="prettyprint linenums">
<script type="text/plain">
  <div></div>
</script>
</code></pre>
*/
/*===========================
  Form
===========================*/
/* Form */
form {
  width: 100%;
  margin: 0 auto;
}

label {
  display: inline-block;
}

input,
select,
button {
  font-size: 1em;
  -webkit-appearance: none;
  display: inline-block;
}

select::-ms-expand {
  display: none;
}

button {
  font-size: 1em;
  border-radius: 10px;
  cursor: pointer;
  padding: 5px 10px;
}

input[type="text"],
input[type="num"],
textarea {
  border-top: 2px solid #eeeeee;
  border-top-style: inset;
  border-right: 2px solid #eeeeee;
  border-bottom: 2px solid #eeeeee;
  border-left: 2px solid #eeeeee;
  border-left-style: inset;
  vertical-align: bottom;
}

body,
body a {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.01em;

}

.gray-small {
    font-size: 10px;
    text-align: right;
    padding-right: 20px;
}

.featurette-heading {
  font-size: 1.5rem;
}

/*===========================
  BR
===========================*/
@media screen and (min-width: 769px) {
  br.pc {
    display: inline;
  }
  br.mobile {
    display: none;
  }
  br.sp {
    display: none;
  }
  br.n_sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
  br.mobile {
    display: inline;
  }
  br.sp {
    display: none;
  }
  br.n_sp {
    display: none;
  }
}

@media screen and (max-width: 414px) {
  br.sp {
    display: inline;
  }
}

@media screen and (max-width: 374px) {
  br.n_sp {
    display: inline;
  }
}

/*===========================
  img
===========================*/
@media screen and (min-width: 769px) {
  img.pc {
    display: inline;
  }
  img.mobile {
    display: none;
  }
  img.sp {
    display: none;
  }
  img.n_sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  img.pc {
    display: none;
  }
  img.mobile {
    display: inline;
  }
  img.sp {
    display: none;
  }
  img.n_sp {
    display: none;
  }
}

@media screen and (max-width: 414px) {
  img.sp {
    display: inline;
  }
}

@media screen and (max-width: 374px) {
  img.n_sp {
    display: inline;
  }
}

@media screen and (min-width: 769px) {
  body {
    min-width: 1200px;
  }
  body .container {
    width:100%;
    max-width: 980px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  body {
    min-width: 320px;
  }
  body .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (min-width: 769px) {
  header .container h1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 24px 0 27px;
  }
  header .container h1 figure {
    width: 100%;
  }
  header .container h1 figure:nth-of-type(1) img {
    width: auto;
    height: 24px;
  }
  header .container h1 figure:nth-of-type(2) {
    margin-top: 10px;
  }
  header .container h1 figure:nth-of-type(2) img {
    width: auto;
    height: 40px;
  }
}

@media screen and (max-width: 768px) {
  header {
    border-top: 0;
  }
  header .container h1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 0;
  }
  header .container h1 figure {
    width: 100%;
  }
  header .container h1 figure:nth-of-type(1) img {
    width: auto;
    height: 10px;
  }
  header .container h1 figure:nth-of-type(2) {
    margin-top: 3px;
  }
  header .container h1 figure:nth-of-type(2) img {
    width: auto;
    height: 23px;
  }
}

@media screen and (min-width: 769px) {
  footer {
    background-color: #004D9E;
    padding: 0 15px;
    /* margin-top: 80px; */
  }
  footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #FFF;
    padding: 13px 0;
  }
  footer .container small {
    font-size: 16px;
    text-align: right;
  }
}

@media screen and (max-width: 768px) {
  footer {
    background-color: #004D9E;
    padding: 0 15px;
    margin-top: 0px;
  }
  footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #FFF;
    padding: 13px 0;
  }
  footer .container small {
    font-size: 8px;
    text-align: right;
  }
}

@media screen and (max-width: 374px) {
  footer .container small {
    margin-left: auto;
  }
}

@media screen and (min-width: 769px) {
  .linkBtn {
    margin-top: 10px;
  }
  .linkBtn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 535px;
    height: 65px;
    font-size: 23px;
    letter-spacing: 0;
    color: #FFF;
    background: -webkit-gradient(linear, left top, left bottom, from(#CB1012), to(#831415));
    background: -webkit-linear-gradient(top, #CB1012, #831415);
    background: linear-gradient(to bottom, #CB1012, #831415);
    border-radius: 65px;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
  }
  .linkBtn a::after {
    content: '';
    width: 32px;
    height: 32px;
    background: url(../img/icons/icon_circle_arrow.png) no-repeat center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
  }
}

@media screen and (max-width: 768px) {
  .linkBtn {
    margin-top: 10px;
  }
  .linkBtn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 42.5px;
    color: #FFF;
    background: -webkit-gradient(linear, left top, left bottom, from(#CB1012), to(#831415));
    background: -webkit-linear-gradient(top, #CB1012, #831415);
    background: linear-gradient(to bottom, #CB1012, #831415);
    border-radius: 21px;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  }
  .linkBtn a::after {
    content: '';
    width: 17px;
    height: 17px;
    background: url(../img/icons/icon_circle_arrow.png) no-repeat center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
  }
}

@media screen and (min-width: 769px) {
  .accordion .title {
    cursor: pointer;
  }
  .accordion .contentsWrapper {
    width: 100%;
    overflow: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .accordion .contentsWrapper .contents {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .accordion .title {
    cursor: pointer;
  }
  .accordion .contentsWrapper {
    width: 100%;
    overflow: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .accordion .contentsWrapper .contents {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .toTop {
    font-size: 18px;
    background-color: #004D9E;
    border-radius: 10px 10px 0 0;
    position: absolute;
    bottom: 100%;
    right: 0;
    padding: 7px 45px 7px 10px;
    cursor: pointer;
  }
  .toTop::after {
    content: '';
    width: 27px;
    height: 27px;
    background: url(../img/icon_toTop.png) no-repeat center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
  }
}

@media screen and (max-width: 768px) {
  .toTop {
    font-size: 12.5px;
    background-color: #004D9E;
    border-radius: 10px 10px 0 0;
    position: absolute;
    bottom: 100%;
    right: 0;
    padding: 5px 30px 5px 10px;
    cursor: pointer;
  }
  .toTop::after {
    content: '';
    width: 17.5px;
    height: 17.5px;
    background: url(../img/icon_toTop.png) no-repeat center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    margin: auto;
  }
}

@media screen and (min-width: 769px) {
  .stickyPane {
    min-width: 320px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    padding: 30px 0;
    overflow: hidden;
  }
  .stickyPane .linkBtn {
    margin-top: 0;
  }
  .stickyPane .linkBtn a {
    width: 535px;
    margin: 0 auto;
  }
  .stickyPane.open {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .stickyPane.close {
    display: none;
  }
  .stickyPane .closeBtn {
    width: 21px;
    height: 21px;
    border: 1px solid #000;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: calc(50% - 267.5px - 21px);
    cursor: pointer;
  }
  .stickyPane .closeBtn span {
    width: 15px;
    height: 1px;
    background-color: #000;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .stickyPane .closeBtn span:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .stickyPane .closeBtn span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

@media screen and (max-width: 768px) {
  .stickyPane {
    min-width: 320px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    padding: 20px 0;
    overflow: hidden;
  }
  .stickyPane .linkBtn {
    margin-top: 0;
  }
  .stickyPane .linkBtn a {
    width: 76%;
    margin: 0 auto;
  }
  .stickyPane.open {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .stickyPane.close {
    display: none;
  }
  .stickyPane .closeBtn {
    width: 21px;
    height: 21px;
    border: 1px solid #000;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
  }
  .stickyPane .closeBtn span {
    width: 15px;
    height: 1px;
    background-color: #000;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .stickyPane .closeBtn span:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .stickyPane .closeBtn span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

@media screen and (min-width: 769px) {
  section#fv .title {
    text-align: right;
    background-color: #DDF3FF;
    padding: 18px 0 20px;
  }
  section#fv .title figure {
    padding: 0 120px;
  }
  section#fv .title .notes {
    font-size: 9px;
    line-height: 1.8;
    text-align: left;
    display: inline-block;
    margin-top: 10px;
  }
  section#fv .link {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: -0.015em;
    text-align: center;
    padding: 67px 0 82px;
  }
}

@media screen and (max-width: 768px) {
  section#fv .title {
    background-color: #DDF3FF;
    padding: 18px 0 20px;
  }
  section#fv .title .container {
    padding-left: 10px;
  }
  section#fv .title .container figure {
    padding-left: 15px;
  }
  section#fv .title .notes {
    width: 100%;
    font-size: 9px;
    padding: 0 15px;
    margin-top: 10px;
  }
  section#fv .link {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 11px;
    letter-spacing: -0.015em;
    text-align: center;
    padding: 25px 0;
  }
}

body.syokokaigisyo section#fv .title {
  background-color: #DDF3FF;
}

body.tyuokai section#fv .title {
  background-color: #FDEFF5;
}

@media screen and (min-width: 769px) {
  section#items {
    padding-top: calc(88px + 10px);
  }
  section#items .stickyTop {
    width: 100%;
    background-color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
  }
  section#items .stickyTop.sticky {
    position: fixed;
    top: 0;
    left: 0;
  }
  section#items .stickyTop .tabBtns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 980px;
    height: 88px;
    background-color: #FFF;
    margin: 0 auto;
  }
  section#items .stickyTop .tabBtns li {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    width: 32.666%;
    height: 100%;
    text-align: center;
    background-color: #A3A3A3;
    border-radius: 10px 10px 0 0;
    margin: 0;
    cursor: pointer;
    z-index: 1000;
  }
  section#items .stickyTop .tabBtns li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
    font-weight: bold;
    color: #FFF;
  }
  section#items .stickyTop .tabBtns li.open {
    cursor: auto;
    z-index: 1;
  }
  section#items .stickyTop .tabBtns li:nth-of-type(1).open {
    background-color: #F753AF;
  }
  section#items .stickyTop .tabBtns li:nth-of-type(2).open {
    background-color: #FFBB00;
  }
  section#items .stickyTop .tabBtns li:nth-of-type(3).open {
    background-color: #F38200;
  }
  section#items .stickyTop .tabBar li {
    width: 100%;
    height: 10px;
    display: none;
  }
  section#items .stickyTop .tabBar li.open {
    display: block;
  }
  section#items .stickyTop .tabBar li:nth-of-type(1) {
    background-color: #F753AF;
  }
  section#items .stickyTop .tabBar li:nth-of-type(2) {
    background-color: #FFBB00;
  }
  section#items .stickyTop .tabBar li:nth-of-type(3) {
    background-color: #F38200;
  }
  section#items .tabs {
    overflow: hidden;
  }
  section#items .tabs > li {
    padding: 70px 0;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
  }
  section#items .tabs > li:nth-of-type(1) {
    background-color: #EE8593;
  }
  section#items .tabs > li:nth-of-type(2) {
    background-color: #FAE583;
  }
  section#items .tabs > li:nth-of-type(3) {
    background-color: #F8B566;
  }
  section#items .tabs > li .pane {
    width: 980px;
    background-color: #FFF;
    padding: 70px;
    margin: 0 auto;
  }
  section#items .tabs > li .pane:nth-of-type(n+2) {
    margin-top: 50px;
  }
  section#items .tabs > li .pane.top .emph {
    color: #CE2224;
  }
  section#items .tabs > li .pane.top .topImage {
    width: 200px;
    position: absolute;
    top: 0;
    right: 0;
  }
  section#items .tabs > li .pane.top .topImage img {
    width: 100%;
    height: auto;
  }
  section#items .tabs > li .pane.top .msg {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 40px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #004D9E;
  }
  section#items .tabs > li .pane.top .features {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 28px;
    line-height: 1.535;
    margin-top: 50px;
  }
  section#items .tabs > li .pane.top .features > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px dotted #000;
    padding-bottom: 20px;
  }
  section#items .tabs > li .pane.top .features > li:nth-of-type(n+2) {
    margin-top: 20px;
  }
  section#items .tabs > li .pane.top .features > li figure {
    width: 60px;
    height: 55px;
    margin: 0 20px 0 0;
  }
  section#items .tabs > li .pane.top dl {
    margin-top: 50px;
  }
  section#items .tabs > li .pane.top dl dt {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 20px;
    color: #FFF;
    background-color: #004D9E;
    text-align: center;
    padding: 10px 0;
  }
  section#items .tabs > li .pane.top dl dd {
    border: 1px solid #004D9E;
    padding: 20px 20px;
  }
  section#items .tabs > li .pane.top dl dd figure {
    height: 100px;
    text-align: center;
  }
  section#items .tabs > li .pane.top dl dd figure img {
    width: auto;
    height: 100%;
  }
  section#items .tabs > li .pane .columns > li {
    border-top: 1px solid #004D9E;
    padding-top: 40px;
    margin-left: 70px;
  }
  section#items .tabs > li .pane .columns > li:nth-of-type(n+2) {
    margin-top: 70px;
  }
  section#items .tabs > li .pane .columns > li .callout {
    width: 142px;
    height: 128px;
    position: absolute;
    top: -2px;
    left: -90px;
  }
  section#items .tabs > li .pane .columns > li dl {
    margin-top: 34px;
  }
  section#items .tabs > li .pane .columns > li dl dt {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 26px;
    color: #FFF;
    background-color: #004D9E;
    border-radius: 10px 10px 0 0;
    text-align: center;
    padding: 20px 0;
  }
  section#items .tabs > li .pane .columns > li dl dt .rect {
    display: inline-block;
    border: 1px solid #FFF;
    padding: 0 2px;
    margin: 0 2px;
  }
  section#items .tabs > li .pane .columns > li dl dd {
    background-color: #F0F0F0;
    border: 1px solid #004D9E;
    padding: 25px;
  }
  section#items .tabs > li .pane .columns > li dl dd p {
    font-size: 22px;
    line-height: 1.545;
  }
  section#items .tabs > li .pane .columns > li dl dd p:nth-child(n+2) {
    margin-top: 25px;
  }
  section#items .tabs > li .pane .columns > li dl dd p.mark {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 24px;
  }
  section#items .tabs > li .pane .columns > li dl dd p.mark::before {
    content: '●';
  }
  section#items .tabs > li .pane .columns > li dl dd p.caption {
    font-size: 18px;
    margin-top: 20px;
  }
  section#items .tabs > li .pane .columns > li dl dd figure:nth-child(n+2) {
    margin-top: 20px;
  }
  section#items .tabs > li .pane .columns > li dl.example dt {
    background-color: #fb4500;
  }
  section#items .tabs > li .pane .columns > li dl.example dd {
    border: none;
  }
  section#items .tabs > li .pane .columns > li dl.example dd p {
    font-size: 20px;
    line-height: 1.6;
  }
  section#items .tabs > li .pane .columns > li dl.example dd p.notes {
    font-size: 18px;
    line-height: 1.555;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 25px;
    margin-top: 14px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .type .typeName {
    color: #FFF;
    background-color: #CE2224;
    display: inline-block;
    padding: 10px 20px;
    margin-right: 20px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .type .term {
    width: 170px;
    font-size: 20px;
    display: inline-block;
    padding-right: 1em;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .type .term::before {
    content: '●';
  }
  section#items .tabs > li .pane .columns > li dl.example dd .type .term::after {
    content: '…';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .type .val {
    font-size: 20px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .headline {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 26px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .priceHead {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 20px;
    border-bottom: 1px solid #707070;
    padding-bottom: 25px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .priceHead:nth-child(n+2) {
    margin-top: 28px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .priceHead + figure {
    margin-top: 36px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .rect {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.363;
    color: #004D9E;
    text-align: center;
    background-color: #FFF;
    border: 2px solid #004D9E;
    padding: 15px 0;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .rect:nth-child(n+2) {
    margin-top: 20px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .rect::before {
    content: '';
    width: 50px;
    height: 77px;
    background: url(../img/icons/icon_arrow_long.png) no-repeat center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title {
    width: 100%;
    height: 60px;
    color: #fb4500;
    background-color: #FFF;
    border-radius: 60px;
    padding: 4px 0;
    overflow: hidden;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title::before {
    display: none;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title::after {
    display: none;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title .openBtn,
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title .closeBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title .openBtn.openBtn,
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title .closeBtn.openBtn {
    top: 0;
    bottom: 0;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title .openBtn.closeBtn,
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title .closeBtn.closeBtn {
    top: 100%;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title span {
    display: inline-block;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title span::after {
    content: '';
    width: 37px;
    height: 37px;
    background: url(../img/icons/icon_arrow_orange.png) no-repeat center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% + 15px);
    margin: auto;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .contents {
    border: none;
    padding: 0 0 25px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion.open .title .openBtn,
  section#items .tabs > li .pane .columns > li dl.example dd .accordion.open .title .closeBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion.open .title .openBtn.openBtn,
  section#items .tabs > li .pane .columns > li dl.example dd .accordion.open .title .closeBtn.openBtn {
    top: auto;
    bottom: 100%;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion.open .title .openBtn.closeBtn,
  section#items .tabs > li .pane .columns > li dl.example dd .accordion.open .title .closeBtn.closeBtn {
    top: 0;
    bottom: 0;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion.open .title .openBtn span::after,
  section#items .tabs > li .pane .columns > li dl.example dd .accordion.open .title .closeBtn span::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  section#items .tabs > li .pane .columns > li .notes {
    font-size: 18px;
    letter-spacing: 0;
    padding-left: 20px;
    margin-top: 25px;
  }
  section#items .tabs > li .pane .columns > li .desc {
    font-size: 20px;
    line-height: 1.6;
    background-color: #FFF2CC;
    padding: 25px;
    margin-top: 33px;
  }
  section#items .tabs > li .pane .columns > li .desc.gray {
    background-color: #F0F0F0;
  }
  section#items .tabs > li .pane .columns > li .notes {
    text-indent: -1em;
    padding-left: 1em;
  }
  section#items .tabs > li .pane .columns > li .notes + .notes {
    margin-top: 0;
  }
  section#items .tabs > li .pane .columns > li .notes.indent1p5 {
    text-indent: -1.5em;
    padding-left: 1.5em;
  }
  section#items .tabs > li .pane .columns > li .notes.indent2 {
    text-indent: -2em;
    padding-left: 2em;
  }
  section#items .tabs > li .pane .columns > li .withImage {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #DDF3FF;
    padding: 50px 30px;
    margin-top: 13.5px;
    margin-left: 55px;
  }
  section#items .tabs > li .pane .columns > li .withImage p {
    width: 70%;
    font-size: 28px;
    line-height: 1.9;
    color: #004D9E;
  }
  section#items .tabs > li .pane .columns > li .withImage::before {
    content: '';
    width: 195px;
    height: 128px;
    background: url(../img/fig_item2_col03_fig01.png) no-repeat center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto;
  }
  section#items .tabs > li .pane .columns > li.item1col02 .callout {
    top: -7px;
  }
  section#items .tabs > li .pane .columns > li.item2col04 {
    border: none;
    padding: 0;
  }
  section#items .tabs > li .pane .columns > li .hspFee > li {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    border-top: 1px solid #707070;
    padding-bottom: 2px;
    margin-left: 55px;
    margin-right: 28px;
  }
  section#items .tabs > li .pane .columns > li .hspFee > li:last-of-type {
    border-bottom: 1px solid #707070;
  }
  section#items .tabs > li .pane .columns > li .hspFee > li .emph {
    font-size: 48px;
    color: #CE2224;
  }
  section#items .tabs > li .pane .columns > li .moreAssist {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    text-align: center;
    background-color: #FDEFF5;
    padding: 25px;
    margin-top: 35px;
    margin-left: 21px;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane {
    width: 100%;
    border-radius: 2.5px;
    padding: 12px;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane:nth-of-type(n+2) {
    margin-top: 20px;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 25px;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane .flex .assistType {
    width: 128px;
    color: #FFF;
    background-color: #D4428E;
    border-radius: 5px;
    padding: 1px 0;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane .flex .assistContents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% - 50px);
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane.disaster .flex {
    height: 128px;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane.disaster .flex .assistType {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane.disaster .flex .assistContents {
    height: 100%;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane.disaster .flex .assistContents ul {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane.disaster .flex .assistContents ul > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    font-size: 24px;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane.disaster .flex .assistContents ul > li figure {
    width: 92px;
    height: 92px;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane.disaster .flex .assistContents ul > li p {
    line-height: 1;
    margin-top: auto;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane .notes {
    font-size: 25px;
  }
  section#items .tabs > li .pane .accordion {
    line-height: 1.6;
    margin-top: 45px;
  }
  section#items .tabs > li .pane .accordion .title {
    font-size: 26px;
    color: #FFF;
    text-align: center;
    background-color: #004D9E;
    padding: 12px 0;
  }
  section#items .tabs > li .pane .accordion .title::before {
    content: '';
    width: 2px;
    height: 100%;
    background-color: #FFF;
    display: block;
    position: absolute;
    top: 0;
    right: 66px;
  }
  section#items .tabs > li .pane .accordion .title::after {
    content: '';
    width: 30px;
    height: 17px;
    background: url(../img/icons/icon_arrow.png) no-repeat center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 18px;
    margin: auto;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  section#items .tabs > li .pane .accordion .contents {
    background-color: #F0F0F0;
    border: 1px solid #004D9E;
    padding: 25px;
  }
  section#items .tabs > li .pane .accordion .contents p {
    font-size: 20px;
    line-height: 1.6;
  }
  section#items .tabs > li .pane .accordion .contents p:nth-child(n+2) {
    margin-top: 25px;
  }
  section#items .tabs > li .pane .accordion .contents figure {
    margin-top: 33px;
  }
  section#items .tabs > li .pane .accordion .contents .mark {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 22px;
  }
  section#items .tabs > li .pane .accordion .contents .mark::before {
    content: '●';
  }
  section#items .tabs > li .pane .accordion .contents .mark:nth-child(n+2) {
    margin-top: 34px;
  }
  section#items .tabs > li .pane .accordion .contents .mark + figure {
    margin-top: 16px;
  }
  section#items .tabs > li .pane .accordion.open .title::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  section#items .tabs > li.open {
    position: relative;
    z-index: 1;
  }
}

@media screen and (max-width: 768px) {
  section#items {
    padding-top: calc(70px + 10px);
  }
  section#items .stickyTop {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 100;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  section#items .stickyTop.sticky {
    min-width: 320px;
    position: fixed;
    top: 0;
    left: 0;
  }
  section#items .stickyTop .tabBtns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 70px;
    background-color: #FFF;
  }
  section#items .stickyTop .tabBtns li {
    width: 32.666%;
    height: 100%;
    text-align: center;
    background-color: #A3A3A3;
    border-radius: 10px 10px 0 0;
    margin: 0;
    cursor: pointer;
    z-index: 1000;
    -webkit-transform: translateZ(1px);
    transform: translateZ(1px);
  }
  section#items .stickyTop .tabBtns li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
  }
  section#items .stickyTop .tabBtns li.open {
    cursor: auto;
    z-index: 1;
    -webkit-transform: translateZ(-1px);
    transform: translateZ(-1px);
  }
  section#items .stickyTop .tabBtns li:nth-of-type(1).open {
    background-color: #F753AF;
  }
  section#items .stickyTop .tabBtns li:nth-of-type(2).open {
    background-color: #FFBB00;
  }
  section#items .stickyTop .tabBtns li:nth-of-type(3).open {
    background-color: #F38200;
  }
  section#items .stickyTop .tabBar li {
    width: 100%;
    height: 10px;
    display: none;
  }
  section#items .stickyTop .tabBar li.open {
    display: block;
  }
  section#items .stickyTop .tabBar li:nth-of-type(1) {
    background-color: #F753AF;
  }
  section#items .stickyTop .tabBar li:nth-of-type(2) {
    background-color: #FFBB00;
  }
  section#items .stickyTop .tabBar li:nth-of-type(3) {
    background-color: #F38200;
  }
  section#items .tabs {
    overflow: hidden;
    z-index: 0;
  }
  section#items .tabs > li {
    position: absolute;
    z-index: -1;
    padding: 0;
    overflow: hidden;
  }
  section#items .tabs > li:nth-of-type(1) {
    background-color: #EE8593;
  }
  section#items .tabs > li:nth-of-type(2) {
    background-color: #FAE583;
  }
  section#items .tabs > li:nth-of-type(3) {
    background-color: #F8B566;
  }
  section#items .tabs > li .pane {
    background-color: #FFF;
    padding: 15px;
  }
  section#items .tabs > li .pane:nth-of-type(n+2) {
    margin-top: 15px;
  }
  section#items .tabs > li .pane.top .emph {
    color: #CE2224;
  }
  section#items .tabs > li .pane.top .topImage {
    height: 115px;
  }
  section#items .tabs > li .pane.top .topImage img {
    width: auto;
    height: 100%;
  }
  section#items .tabs > li .pane.top .msg {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 17px;
    line-height: 1.394;
    letter-spacing: 0;
    text-align: center;
    color: #004D9E;
    margin-top: 10px;
  }
  section#items .tabs > li .pane.top .features {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.433;
    margin-top: 25px;
  }
  section#items .tabs > li .pane.top .features > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px dotted #000;
    padding-bottom: 10px;
  }
  section#items .tabs > li .pane.top .features > li:nth-of-type(n+2) {
    margin-top: 10px;
  }
  section#items .tabs > li .pane.top .features > li figure {
    width: 42px;
    height: 40px;
    margin: 0 12.5px 0 0;
  }
  section#items .tabs > li .pane.top dl {
    margin-top: 25px;
  }
  section#items .tabs > li .pane.top dl dt {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 12.5px;
    color: #FFF;
    background-color: #004D9E;
    text-align: center;
    padding: 10px 0;
  }
  section#items .tabs > li .pane.top dl dd {
    border: 1px solid #004D9E;
    padding: 10px 20px 5px;
  }
  section#items .tabs > li .pane.top dl dd figure {
    height: 10vw;
    min-height: 30px;
  }
  section#items .tabs > li .pane.top dl dd figure img {
    width: 100%;
    height: 100%;
  }
  section#items .tabs > li .pane .columns {
    padding-left: 15px;
  }
  section#items .tabs > li .pane .columns > li:nth-of-type(n+2) {
    margin-top: 14px;
  }
  section#items .tabs > li .pane .columns > li:nth-last-of-type(n+2) {
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
  }
  section#items .tabs > li .pane .columns > li .callout {
    width: 55px;
    height: 50px;
    position: absolute;
    top: -16px;
    left: -40px;
  }
  section#items .tabs > li .pane .columns > li dl {
    margin-top: 12px;
  }
  section#items .tabs > li .pane .columns > li dl dt {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 11px;
    color: #FFF;
    background-color: #004D9E;
    border-radius: 5px 5px 0 0;
    text-align: center;
    padding: 6px 0;
  }
  section#items .tabs > li .pane .columns > li dl dt .rect {
    display: inline-block;
    border: 1px solid #FFF;
    padding: 0 2px;
    margin: 0 2px;
  }
  section#items .tabs > li .pane .columns > li dl dd {
    background-color: #F0F0F0;
    border: 1px solid #004D9E;
    padding: 11px 10px;
  }
  section#items .tabs > li .pane .columns > li dl dd p {
    font-size: 12px;
  }
  section#items .tabs > li .pane .columns > li dl dd p:nth-child(n+2) {
    margin-top: 10px;
  }
  section#items .tabs > li .pane .columns > li dl dd p.mark {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 10px;
  }
  section#items .tabs > li .pane .columns > li dl dd p.mark::before {
    content: '●';
  }
  section#items .tabs > li .pane .columns > li dl dd p.caption {
    font-size: 10px;
    margin-top: 15px;
  }
  section#items .tabs > li .pane .columns > li dl dd figure:nth-child(n+2) {
    margin-top: 7.5px;
  }
  section#items .tabs > li .pane .columns > li dl.example dt {
    background-color: #fb4500;
  }
  section#items .tabs > li .pane .columns > li dl.example dd {
    border: none;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .headline {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 11px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 14px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .type .typeName {
    color: #FFF;
    background-color: #CE2224;
    display: inline-block;
    padding: 2px 4px;
    margin-right: 4px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .type .term {
    width: 90px;
    display: inline-block;
    padding-right: 1em;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .type .term::before {
    content: '●';
  }
  section#items .tabs > li .pane .columns > li dl.example dd .type .term::after {
    content: '…';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .priceHead {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 10px;
    border-bottom: 1px solid #707070;
    padding-bottom: 5px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .priceHead:nth-child(n+2) {
    margin-top: 25px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .priceHead + figure {
    margin-top: 12px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .rect {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 11px;
    line-height: 1.363;
    color: #004D9E;
    text-align: center;
    background-color: #FFF;
    border: 1px solid #004D9E;
    padding: 5px 0;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .rect:nth-child(n+2) {
    margin-top: 20px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .rect::before {
    content: '';
    width: 16px;
    height: 26px;
    background: url(../img/icons/icon_arrow_long.png) no-repeat center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title {
    width: 100%;
    height: 25px;
    color: #fb4500;
    background-color: #FFF;
    border-radius: 25px;
    padding: 4px 0;
    overflow: hidden;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title::before {
    display: none;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title::after {
    display: none;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title .openBtn,
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title .closeBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title .openBtn.openBtn,
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title .closeBtn.openBtn {
    top: 0;
    bottom: 0;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title .openBtn.closeBtn,
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title .closeBtn.closeBtn {
    top: 100%;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title span {
    display: inline-block;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .title span::after {
    content: '';
    width: 15px;
    height: 15px;
    background: url(../img/icons/icon_arrow_orange.png) no-repeat center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% + 10px);
    margin: auto;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion .contents {
    border: none;
    padding: 0 0 6px;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion.open .title .openBtn,
  section#items .tabs > li .pane .columns > li dl.example dd .accordion.open .title .closeBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion.open .title .openBtn.openBtn,
  section#items .tabs > li .pane .columns > li dl.example dd .accordion.open .title .closeBtn.openBtn {
    top: auto;
    bottom: 100%;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion.open .title .openBtn.closeBtn,
  section#items .tabs > li .pane .columns > li dl.example dd .accordion.open .title .closeBtn.closeBtn {
    top: 0;
    bottom: 0;
  }
  section#items .tabs > li .pane .columns > li dl.example dd .accordion.open .title .openBtn span::after,
  section#items .tabs > li .pane .columns > li dl.example dd .accordion.open .title .closeBtn span::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  section#items .tabs > li .pane .columns > li .notes {
    font-size: 9px;
    letter-spacing: 0;
    padding-left: 20px;
    margin-top: 7px;
  }
  section#items .tabs > li .pane .columns > li .desc {
    font-size: 12px;
    line-height: 1.6;
    background-color: #FFF2CC;
    padding: 10px;
    margin-top: 12.5px;
  }
  section#items .tabs > li .pane .columns > li .desc.gray {
    background-color: #F0F0F0;
  }
  section#items .tabs > li .pane .columns > li .notes {
    text-indent: -1em;
    padding-left: 1em;
  }
  section#items .tabs > li .pane .columns > li .notes + .notes {
    margin-top: 0;
  }
  section#items .tabs > li .pane .columns > li .notes.indent1p5 {
    text-indent: -1.5em;
    padding-left: 1.5em;
  }
  section#items .tabs > li .pane .columns > li .notes.indent2 {
    text-indent: -2em;
    padding-left: 2em;
  }
  section#items .tabs > li .pane .columns > li .withImage {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 70px;
    flex-wrap: wrap;
    background-color: #DDF3FF;
    padding: 10px;
    margin-top: 13.5px;
  }
  section#items .tabs > li .pane .columns > li .withImage p {
    font-size: 12.5px;
    line-height: 1.52;
    color: #004D9E;
    padding-right: 100px;
  }
  section#items .tabs > li .pane .columns > li .withImage::before {
    content: '';
    width: 75px;
    height: 50px;
    background: url(../img/fig_item2_col03_fig01.png) no-repeat center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
  }
  section#items .tabs > li .pane .columns > li.item1col02 {
    margin-top: 5px;
  }
  section#items .tabs > li .pane .columns > li.item1col02 .callout {
    top: -7px;
  }
  section#items .tabs > li .pane .columns > li .hspFee {
    padding: 0 15px 0 5%;
  }
  section#items .tabs > li .pane .columns > li .hspFee > li {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 17px;
    text-align: center;
    border-top: 1px solid #707070;
    padding-bottom: 2px;
  }
  section#items .tabs > li .pane .columns > li .hspFee > li:last-of-type {
    border-bottom: 1px solid #707070;
  }
  section#items .tabs > li .pane .columns > li .hspFee > li .emph {
    font-size: 20px;
    color: #CE2224;
  }
  section#items .tabs > li .pane .columns > li .moreAssist {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    text-align: center;
    background-color: #FDEFF5;
    padding: 6.5px 10.5px;
    margin-top: 10px;
    margin-left: 21px;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane {
    border-radius: 2.5px;
    padding: 5px;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 10px;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane .flex .assistType {
    width: 50px;
    color: #FFF;
    background-color: #D4428E;
    border-radius: 2.5px;
    padding: 1px 0;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane .flex .assistContents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% - 50px);
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane.disaster .flex {
    height: 50px;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane.disaster .flex .assistType {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane.disaster .flex .assistContents ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane.disaster .flex .assistContents ul > li:nth-of-type(n+2) {
    margin-left: 10%;
  }
  section#items .tabs > li .pane .columns > li .moreAssist .pane.disaster .flex .assistContents ul > li figure {
    width: 32.5px;
    height: 32.5px;
  }
  section#items .tabs > li .pane .accordion {
    font-size: 10px;
    line-height: 1.6;
    margin-top: 12.5px;
  }
  section#items .tabs > li .pane .accordion .title {
    font-size: 11px;
    color: #FFF;
    text-align: center;
    background-color: #004D9E;
    padding: 5px 0;
  }
  section#items .tabs > li .pane .accordion .title::before {
    content: '';
    width: 1px;
    height: 100%;
    background-color: #FFF;
    display: block;
    position: absolute;
    top: 0;
    right: 25px;
  }
  section#items .tabs > li .pane .accordion .title::after {
    content: '';
    width: 12px;
    height: 7px;
    background: url(../img/icons/icon_arrow.png) no-repeat center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 6px;
    margin: auto;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  section#items .tabs > li .pane .accordion .contents {
    background-color: #F0F0F0;
    border: 1px solid #004D9E;
    padding: 15px;
  }
  section#items .tabs > li .pane .accordion .contents p:nth-child(n+2) {
    margin-top: 12.5px;
  }
  section#items .tabs > li .pane .accordion .contents figure {
    margin-top: 11.5px;
  }
  section#items .tabs > li .pane .accordion .contents .mark {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 10px;
  }
  section#items .tabs > li .pane .accordion .contents .mark::before {
    content: '●';
  }
  section#items .tabs > li .pane .accordion .contents .mark:nth-child(n+2) {
    margin-top: 14px;
  }
  section#items .tabs > li .pane .accordion .contents .mark + figure {
    margin-top: 6px;
  }
  section#items .tabs > li .pane .accordion.open .title::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  section#items .tabs > li.open {
    position: relative;
    z-index: 1;
    padding: 15px;
  }
}

@media screen and (min-width: 769px) {
  section#cta {
    padding-top: 100px;
  }
  section#cta .container > div:nth-child(n+2) {
    margin-top: 78px;
  }
  section#cta .withLine {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 30px;
    letter-spacing: 0;
    color: #004D9E;
    text-align: center;
    white-space: nowrap;
    padding-bottom: 34px;
    margin-bottom: 45px;
  }
  section#cta .withLine::after {
    content: '';
    width: 68px;
    height: 3px;
    background-color: #004D9E;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  section#cta .toCare {
    background-color: #DDF3FF;
    padding: 50px 0 56px;
  }
  section#cta .toCare p {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 25px;
    line-height: 1.52;
    text-align: center;
  }
  section#cta .toCare p .emph {
    color: #CE2224;
  }
  section#cta .toCare p .small {
    font-size: 0.64em;
  }
  section#cta .toCare p.notes {
    font-size: 16px;
    margin-top: 5px;
  }
  section#cta .medicalAssist .msg {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 26px;
    line-height: 1.423;
    color: #CE2224;
    text-align: center;
  }
  section#cta .medicalAssist .msg span {
    display: inline-block;
  }
  section#cta .medicalAssist .msg span::before, section#cta .medicalAssist .msg span::after {
    content: '';
    width: 2px;
    height: 70px;
    background-color: #CE2224;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  section#cta .medicalAssist .msg span::before {
    right: calc(100% + 30px);
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  section#cta .medicalAssist .msg span::after {
    left: calc(100% + 30px);
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  section#cta .medicalAssist .medicalAssistTitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 108px;
    background-color: #0061B1;
    position: absolute;
    padding: 22px 140px 22px 32px;
    margin-top: 23px;
  }
  section#cta .medicalAssist .medicalAssistTitle::before {
    content: '';
    width: 2px;
    height: 100%;
    background-color: #FFF;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 108px;
    margin: auto;
  }
  section#cta .medicalAssist .accordion {
    width: 100%;
    margin-top: 23px;
  }
  section#cta .medicalAssist .accordion .title {
    width: 100%;
    height: 108px;
    margin-top: 1px;
  }
  section#cta .medicalAssist .accordion .title::after {
    content: '';
    width: 38px;
    height: 22px;
    background: url(../img/icons/icon_arrow.png) no-repeat center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 37px;
    margin: auto;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    -webkit-transform-origin: 50% 45%;
    transform-origin: 50% 45%;
  }
  section#cta .medicalAssist .accordion .contents {
    font-size: 10px;
    line-height: 1.4;
    border: 1px solid #0061B1;
    padding: 37px 32px;
  }
  section#cta .medicalAssist .accordion .contents .assistItems > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  section#cta .medicalAssist .accordion .contents .assistItems > li:nth-of-type(n+2) {
    margin-top: 13px;
    margin-bottom: 13px;
  }
  section#cta .medicalAssist .accordion .contents .assistItems > li .assistType {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100px;
    height: 50px;
    font-size: 16px;
    line-height: 1.235;
    color: #FFF;
    text-align: center;
    background-color: #0061B1;
    margin-right: 10px;
  }
  section#cta .medicalAssist .accordion .contents .assistItems > li .voices {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
  }
  section#cta .medicalAssist .accordion .contents .assistItems > li .voices > li {
    font-size: 16px;
    padding-left: 1em;
  }
  section#cta .medicalAssist .accordion .contents .assistItems > li .voices > li::before {
    content: '・';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  section#cta .medicalAssist .accordion .contents .assistItems > li .attention {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    font-size: 17px;
    color: #CE2224;
    text-indent: -1em;
    
    padding: 0 8px 0 calc(1em + 8px);
    margin-left: 20px;
  }
  section#cta .medicalAssist .accordion .contents .notes,
  section#cta .medicalAssist .accordion .contents p {
    border-top: 1px solid #004D9E;
    padding-top: 33px;
    margin-top: 33px;
  }
  section#cta .medicalAssist .accordion .contents .notes {
    font-size: 14px;
    line-height: 1.571;
  }
  section#cta .medicalAssist .accordion .contents .notes > li {
    padding-left: 1em;
  }
  section#cta .medicalAssist .accordion .contents .notes > li::before {
    content: '・';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  section#cta .medicalAssist .accordion .contents p {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 16px;
  }
  section#cta .medicalAssist .accordion.open .title::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  section#cta .medicalAssist.mentalhealtSupport .medicalAssistTitle {
    margin-top: 0;
  }
  section#cta .medicalAssist.mentalhealtSupport .accordion .contents .assistItems > li .assistType {
    width: 134px;
    height: 80px;
  }
  section#cta .medicalAssist.mentalhealtSupport.notDisplay {
    display: none;
  }
  section#cta .support {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    background-color: #f9f2eb;
    padding: 30px 0 30px 140px;
  }
  section#cta .support h2 {
    font-size: 30px;
    line-height: 1.4;
    color: #CE2224;
  }
  section#cta .support p {
    font-size: 18px;
    line-height: 1.555;
    margin-top: 10px;
  }
  section#cta .support::before {
    content: '';
    width: 150px;
    height: 150px;
    background: url(../img/icons/icon_support_person.png) no-repeat center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 140px;
    margin: auto;
  }
  section#cta .movie {
    background-color: #FFF3D1;
    padding: 50px 0 40px;
  }
  section#cta .movie .iframeWrapper {
    width: 61.224%;
    height: 0;
    padding-top: 34.438%;
    margin: 0 auto;
  }
  section#cta .movie .iframeWrapper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  section#cta .link .linkBtn {
    width: 85%;
    margin: 0 auto;
  }
  section#cta .insrInfo {
    font-size: 12px;
    line-height: 1.833;
    text-align: right;
    margin-top: 68px;
  }
}

@media screen and (max-width: 768px) {
  section#cta {
    padding-top: 30px;
  }
  section#cta .container > div:nth-child(n+2) {
    margin-top: 27.5px;
  }
  section#cta .withLine {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0;
    color: #004D9E;
    text-align: center;
    white-space: nowrap;
    padding-bottom: 11.5px;
    margin-bottom: 13.5px;
  }
  section#cta .withLine::after {
    content: '';
    width: 34px;
    height: 2.5px;
    background-color: #004D9E;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  section#cta .toCare {
    background-color: #DDF3FF;
    padding: 11px 0 13px;
  }
  section#cta .toCare p {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }
  section#cta .toCare p .emph {
    color: #CE2224;
  }
  section#cta .toCare p .small {
    font-size: 0.625em;
  }
  section#cta .toCare p.notes {
    font-size: 0.625em;
    margin-top: 5px;
  }
  section#cta .medicalAssist .msg {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.423;
    color: #CE2224;
    text-align: center;
  }
  section#cta .medicalAssist .msg span {
    display: inline-block;
  }
  section#cta .medicalAssist .msg span::before, section#cta .medicalAssist .msg span::after {
    content: '';
    width: 1px;
    height: 35px;
    background-color: #CE2224;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  section#cta .medicalAssist .msg span::before {
    right: calc(100% + 20px);
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  section#cta .medicalAssist .msg span::after {
    left: calc(100% + 20px);
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  section#cta .medicalAssist .medicalAssistTitle {
    background-color: #0061B1;
    padding: 10px 12.5px;
    margin-top: 11.5px;
  }
  section#cta .medicalAssist .accordion .title {
    width: 100%;
    height: 20px;
    background-color: #0061B1;
    margin-top: 1px;
  }
  section#cta .medicalAssist .accordion .title::after {
    content: '';
    width: 17.5px;
    height: 10px;
    background: url(../img/icons/icon_arrow.png) no-repeat center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    -webkit-transform-origin: 50% 45%;
    transform-origin: 50% 45%;
  }
  section#cta .medicalAssist .accordion .contents {
    font-size: 10px;
    line-height: 1.4;
    border: 1px solid #0061B1;
    padding: 15px;
  }
  section#cta .medicalAssist .accordion .contents .assistItems > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  section#cta .medicalAssist .accordion .contents .assistItems > li:nth-of-type(n+2) {
    margin-top: 13px;
  }
  section#cta .medicalAssist .accordion .contents .assistItems > li .assistType {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    width: 65px;
    font-size: 10px;
    color: #FFF;
    text-align: center;
    background-color: #0061B1;
    padding: 5px 0;
    margin-right: 7.5px;
  }
  section#cta .medicalAssist .accordion .contents .assistItems > li .voices {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
  }
  section#cta .medicalAssist .accordion .contents .assistItems > li .voices > li {
    padding-left: 1em;
  }
  section#cta .medicalAssist .accordion .contents .assistItems > li .voices > li::before {
    content: '・';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  section#cta .medicalAssist .accordion .contents .assistItems > li .attention {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    color: #CE2224;
    text-indent: -1em;
    
    padding: 5px 6.5px 5px calc(1em + 6.5px);
    margin-left: 10px;
  }
  section#cta .medicalAssist .accordion .contents .notes,
  section#cta .medicalAssist .accordion .contents p {
    border-top: 1px solid #000;
    padding-top: 11px;
    margin-top: 13px;
  }
  section#cta .medicalAssist .accordion .contents .notes > li {
    padding-left: 1em;
  }
  section#cta .medicalAssist .accordion .contents .notes > li::before {
    content: '・';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  section#cta .medicalAssist .accordion.open .title::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  section#cta .medicalAssist.mentalhealtSupport .medicalAssistTitle {
    margin-top: 0;
  }
  section#cta .medicalAssist.mentalhealtSupport .accordion .contents .assistItems > li .assistType {
    width: 80px;
    height: 45px;
  }
  section#cta .medicalAssist.mentalhealtSupport.notDisplay {
    display: none;
  }
  section#cta .support {
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    font-weight: bold;
    background-color: #f9f2eb;
    padding: 23px 15px;
  }
  section#cta .support h2 {
    width: 60%;
    font-size: 17px;
    line-height: 1.47;
    color: #CE2224;
  }
  section#cta .support p {
    width: 60%;
    font-size: 10px;
    line-height: 1.6;
    margin-top: 10px;
  }
  section#cta .support::before {
    content: '';
    width: 100px;
    height: 100px;
    background: url(../img/icons/icon_support_person.png) no-repeat center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10%;
    margin: auto;
  }
  section#cta .movie {
    background-color: #FFF3D1;
    padding: 20px 0;
  }
  section#cta .movie .iframeWrapper {
    width: 66.376%;
    height: 0;
    padding-top: 37.336%;
    margin: 0 auto;
  }
  section#cta .movie .iframeWrapper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  section#cta .link .linkBtn {
    width: 85%;
    margin: 0 auto;
  }
  section#cta .insrInfo {
    font-size: 10px;
    line-height: 1.6;
    text-align: right;
    margin-top: 25px;
  }
}

_:-ms-fullscreen, :root section#items .tabs > li .pane .columns > li .withImage {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.menu-link {
  background: none !important;
  border: none !important;
}


/* add css */

.link-a-pd {
  padding-block: 1px;
  padding-inline: 6px;
}
@media (hover: hover) and (pointer: fine) {
  .link-a-hover:hover {
    text-decoration: none;
  }
}
.font-size-fixed {
  font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
.a-fixed {
  padding-block: 1px;
  padding-inline: 6px;
}

