@charset "UTF-8";
/*@mixin tabletL {
	//タブレット横の場合
	@media only screen and (max-width: $bpTabletL) {
		@content;
	}
}*/
/* Reset
------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

address,
em {
  font-style: italic;
}

th {
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th {
  text-align: left;
}

hr,
legend {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

img,
fieldset {
  border: 0;
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

li {
  list-style-type: none;
}

input[type="submit"], button, label, select {
  cursor: pointer;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

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

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* link
------------------------------------------------------------*/
a {
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #333;
  opacity: 0.8;
}

button:hover {
  opacity: 0.8;
}

/* Fonts
------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

/* 10px base */
body {
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

body > div, input, button, textarea, select {
  font-size: 15px;
  font-size: 1.5rem;
  font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.6;
  color: #000;
}

@media only screen and (max-width: 992px) {
  body > div, input, button, textarea, select {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

p {
  margin-bottom: 10px;
}

p a {
  color: #00A1BB;
  text-decoration: underline;
}

p a:hover {
  color: #00A1BB;
  text-decoration: none;
}

p.notes {
  font-size: 13px;
  font-size: 1.3rem;
  margin-top: 10px;
}

/* form
------------------------------------------------------------*/
select {
  padding: 10px;
  border-radius: 5px;
}

textarea,
input[type="text"],
input[type="password"],
input[type="email"],
select {
  padding: 10px;
  border: solid 1px #E0E0E0;
}

textarea {
  width: 100%;
  background: #FAFAFA;
}

textarea.error,
input[type="text"].error,
input[type="password"].error,
input[type="email"].error,
select.error {
  background-color: #fff2f2;
  border: solid 2px #E33E41;
}

/* radio
-------------*/
input[type="radio"] {
  display: none;
}

input[type="radio"] + label {
  position: relative;
  display: inline-block;
  padding: 3px 10px 3px 24px;
  cursor: pointer;
  width: 100%;
}

input[type="radio"] + label::before,
input[type="radio"] + label::after {
  content: '';
  top: 50%;
  position: absolute;
  border-radius: 100%;
  -webkit-transition: all .2s;
  transition: all .2s;
}

input[type="radio"] + label::before {
  width: 16px;
  height: 16px;
  margin-top: -9px;
  left: 0;
  background: #EEE;
  border: 1px solid #ccc;
}

input[type="radio"].error + label::before {
  border: 1px solid #E33E41;
  background-color: #fff2f2;
}

input[type="radio"] + label:hover::before {
  background: #FEFEFE;
}

input[type="radio"] + label::after {
  opacity: 0;
  left: 3px;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  background: #3498DB;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

input[type="radio"]:checked + label::before {
  background: #fff;
  border: 1px solid #3498DB;
}

input[type="radio"]:checked + label::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* checkbox
-------------*/
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  padding: 3px 10px 3px 25px;
  cursor: pointer;
}

input[type="checkbox"] + label::before,
input[type="checkbox"] + label::after {
  position: absolute;
  content: '';
}

input[type="checkbox"] + label::before {
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  margin-top: -8px;
  background: url('../img/common/iconCheckboxBlank.png');
}

input[type="checkbox"]:checked + label {
  color: #00A1BB;
}

input[type="checkbox"]:checked + label::before {
  background: url('../img/common/iconCheckbox.png');
}

input[type="checkbox"]:checked + label::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}

#detail a,
.modDl02 a {
  color: #00A1BB;
  text-decoration: underline;
  margin-bottom: 20px;
}

#detail a:hover,
.modDl02 a:hover {
  color: #00A1BB;
  text-decoration: none;
  cursor: pointer;
}

#detail p a {
  margin-bottom: 0px;
}

#search a {
  color: #00A1BB;
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 992px) {
  .sideBanner {
    text-align: center;
  }
}

/*
#overview
_レイアウト
*/
#wrapper {
  min-width: 1050px;
}

@media only screen and (max-width: 992px) {
  #wrapper {
    min-width: inherit;
  }
}

/*.container*/
.container {
  margin-left: auto;
  margin-right: auto;
  padding-right: 10px;
  padding-left: 15px;
}

@media only screen and (max-width: 992px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.modColumnsLayout {
  padding: 0 0 0 15px;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 992px) {
  .modColumnsLayout {
    padding: 0;
    flex-direction: column;
  }
}

/*.marginSection*/
.marginSection {
  padding: 0 0 15px;
}

@media only screen and (max-width: 992px) {
  .marginSection {
    padding: 0;
  }
}

#wrapper > section {
  padding-top: 33px;
}

section section {
  margin-bottom: 15px;
}

@media only screen and (max-width: 992px) {
  section section {
    padding: 20px 0 20px 0;
  }
}

@media only screen and (max-width: 992px) {
  .modTitle01 + section {
    padding-top: 0;
  }
}

main > section {
  margin-bottom: 30px;
}

@media only screen and (max-width: 992px) {
  main > section {
    margin-bottom: 40px;
  }
}

/*Detail Page*/
main > section:first-child h2 {
  margin-top: 0;
}

main > .sectionWrapper {
  margin-bottom: 50px;
}

.sectionWrapper_inner {
  margin-bottom: 40px;
}

.sectionWrapper_inner_lv3 {
  margin-bottom: 40px;
}

.sectionDetail {
  margin-bottom: 30px;
}

#detail {
  margin-bottom: 50px;
}

#detail p {
  margin: 20px 0;
}

#detail hr {
  border: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-top: 15px;
  margin-bottom: 15px;
  display: block;
}

#detail hr.spacer {
  height: 0px;
  margin-bottom: 40px;
  border-width: 1px 0 0 0;
  border-color: transparent;
  display: block;
}

#detail > :first-child {
  margin-top: 0 !important;
}

#detail .block {
  margin-bottom: 50px;
}

#detail .inner {
  margin-bottom: 30px;
}

#detail h2 + ol, #detail h2 + p, #detail h2 + ul, #detail h3 + ol, #detail h3 + p, #detail h3 + ul, #detail h4 + ol, #detail h4 + p, #detail h4 + ul, #detail h5 + ol, #detail h5 + p, #detail h5 + ul, #detail h6 + ol, #detail h6 + p, #detail h6 + ul {
  margin-top: 0;
}

#detail h2 + h3, #detail h3 + h4 {
  margin-top: 0;
}

#detail img {
  border: 1px solid #ddd !important;
  margin: 10px 0;
}

#breadcrumbs {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.8;
  background: #fafafa;
  border-bottom: solid 1px #e0e0e0;
  padding: 8px 0;
}

@media only screen and (max-width: 992px) {
  #breadcrumbs {
    display: none;
  }
}

#breadcrumbs > * {
  max-width: 1196px;
  padding-left: 16px;
}

@media only screen and (min-width: 1241px) {
  #breadcrumbs > * {
    padding: 0;
  }
}

#breadcrumbs ul {
  margin-left: 15px;
  margin-right: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#breadcrumbs li {
  display: inline-block;
  padding: 0 4px 0 14px;
  background: url('../img/common/iconArrowRightGray2.png') no-repeat left 4px;
}

#breadcrumbs li:first-child {
  background: url('../img/common/iconHomeGray.png') no-repeat 1px 3px;
  padding: 0 4px 0 22px;
}

#pageTitle {
  background: #f1eee7;
  position: relative;
  padding: 40px 0;
  margin-bottom: 48px;
}

#pageTitle p.text {
  margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
  #pageTitle {
    margin-bottom: 30px;
  }
}

#pageTitle .container {
  position: relative;
}

@media only screen and (max-width: 992px) {
  #pageTitle .container {
    position: relative;
  }
}

#pageTitle .subTitle {
  font-size: 18px;
  font-size: 1.8rem;
  color: #3B8DCD;
  font-weight: 500;
  margin-left: 15px;
  margin-right: 15px;
}

@media only screen and (max-width: 992px) {
  #pageTitle .subTitle {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
  }
}

#pageTitle h1 {
  margin-left: 15px;
  margin-right: 15px;
  font-size: 28px;
  font-size: 2.8rem;
}

@media only screen and (max-width: 992px) {
  #pageTitle h1 {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.4;
    margin-left: 0;
    margin-right: 0;
  }
}

#pageTitle .text {
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 5px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 992px) {
  #pageTitle .text {
    padding-top: 15px;
    line-height: 1.6;
    margin-left: 0;
    margin-right: 0;
  }
}

#pageTitle .img {
  position: absolute;
  right: 0;
  bottom: 0;
}

#pageTitle .img img {
  width: auto;
  height: 230px;
}

@media only screen and (max-width: 992px) {
  #pageTitle .img {
    width: 100%;
    height: 135px;
    background: #f1eee7;
    top: -60px;
    text-align: center;
  }
  #pageTitle .img img {
    width: auto;
    height: 115px;
    margin-top: 20px;
  }
}

#pageTitle.pageTitle_large {
  padding: 0;
}

#pageTitle.pageTitle_large .container {
  padding: 64px 0 82px;
}

@media only screen and (max-width: 992px) {
  #pageTitle.pageTitle_large {
    background: #fff;
    padding: 60px 0 20px;
  }
  #pageTitle.pageTitle_large .container {
    padding: 0;
  }
}

#pageTitle.pageTitle_large h1 {
  font-size: 34px;
  font-size: 3.4rem;
}

@media only screen and (max-width: 992px) {
  #pageTitle.pageTitle_large h1 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

@media only screen and (max-width: 992px) {
  #pageTitle.pageTitle_large .container {
    padding: 100px 20px 0;
  }
}

@media only screen and (max-width: 992px) {
  #pageTitle.pageTitle_large .container .container-inner {
    margin: 0 20px;
  }
}

.selectBox {
    display: block;
    position: relative;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    text-align: center;
}

.selectItem {
    margin-right: 60px;
}

.selectItem:last-child {
    margin-right: 0px;
}

@media only screen and (max-width: 992px) {
    .selectItem {
        margin-right: 0px;
    }
}

.selectBox label {
    padding-top: 10px;
}

@media only screen and (max-width: 992px) {
    .selectBox label {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .selectBox {
        display: block;
    }
}

@media only screen and (max-width: 992px) {
    .selectItem:after {
        content: "";
        display: inline-block;
        position: absolute;
        right: 20px;
        top: 22px;
        background: url('../img/common/iconDropDown.png');
        width: 10px;
        height: 5px;
    }
}

@media only screen and (max-width: 992px) {
    .selectBox select {
        width: 100%;
        margin-bottom: 10px;
        border-radius: 0;
        border: solid 2px #00A1BB;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}

#pageTitle.pageTitle_search ul.category {
  display: block;
  text-align: center;
  margin-bottom: 25px;
}

@media only screen and (max-width: 992px) {
  #pageTitle.pageTitle_search ul.category {
    display: none;
  }
}

#pageTitle.pageTitle_search ul.category li {
  display: inline-block;
}

#pageTitle.pageTitle_search .keyword {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.side aside > section {
  padding-top: 30px;
}

.side aside > section:first-child {
  padding-top: 15px;
}

.side aside .modTitle01 {
  margin-bottom: 25px;
}

#footer {
  margin-top: 60px;
  border-top: solid 4px #3691CA;
  position: relative;
}

#footer .btnPageTop {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 50px;
}

@media only screen and (max-width: 992px) {
  #footer .btnPageTop {
    display: none !important;
  }
}

#footer .btnPageTop.stop {
  position: absolute;
  right: 20px;
  top: -52px;
}

#footer .sitemap {
  padding: 25px 0;
}

@media only screen and (max-width: 992px) {
  #footer .sitemap {
    padding: 0;
  }
}

#footer .sitemap > .container {
  max-width: 1140px;
}

#footer .sitemapList:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

@media only screen and (max-width: 992px) {
  #footer .sitemapList {
    margin-left: -15px;
    margin-right: -15px;
  }
}

#footer .sitemapList > li {
  float: left;
  width: 20%;
  margin: 30px 0;
}

@media only screen and (min-width: 1200px) {
  #footer .sitemapList > li {
    min-height: 240px;
  }
}

@media only screen and (max-width: 992px) {
  #footer .sitemapList > li {
    float: none;
    width: auto;
    margin: 0;
    background: #fafafa;
    border-bottom: solid 1px #e0e0e0;
  }
}

@media only screen and (max-width: 992px) {
  #footer .sitemapList > li.etcMenu {
    border-bottom: none;
    padding: 25px;
  }
}

@media only screen and (max-width: 992px) {
  #footer .sitemapList > li.etcMenu > ul {
    margin-bottom: 0;
  }
}

#footer dt {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.2;
}

@media only screen and (max-width: 992px) {
  #footer dt {
    margin-bottom: 0;
    padding: 15px 25px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 992px) and (max-width: 992px) {
  #footer dt {
    background-image: url('../img/common/iconArrowDownBlue.png');
    background-repeat: no-repeat;
    background-position: calc( 100% - 20px);
  }
}

@media only screen and (max-width: 992px) {
  #footer dt.open {
    background-image: url('../img/common/iconArrowUpBlue.png');
  }
}

#footer dd {
  padding: 10px 10px 10px 0;
}

@media only screen and (max-width: 992px) {
  #footer dd {
    padding: 10px 10px 10px 25px;
    display: none;
  }
}

#footer dd li {
  font-size: 14px;
  font-size: 1.4rem;
  background: url('../img/common/iconArrowRightGray2_sm.png') no-repeat 7px 8px;
  padding: 0 0 0 20px;
}

@media only screen and (max-width: 992px) {
  #footer dd li {
    padding: 10px 10px 10px 15px;
    background-position: left 1.1em;
  }
}

#footer dd li:not(:last-child) {
  padding: 0 0 5px 20px;
}

@media only screen and (max-width: 992px) {
  #footer dd li:not(:last-child) {
    padding: 10px 10px 10px 15px;
  }
}

#footer dd .iconBlank:after {
  content: "";
  display: inline-block;
  background: url('../img/common/iconNewWindow.png') no-repeat;
  width: 14px;
  height: 14px;
  margin-left: 10px;
}

#footer .bottom {
  background: #2F2E34;
  color: #FFF;
}

#footer .bottom > .container {
  max-width: 1200px;
}

#footer .bottom a {
  color: #FFF;
}

#footer .sns, #footer .etc {
  text-align: center;
}

#footer .sns {
  border-bottom: solid 1px #474648;
  padding: 30px 0;
}

#footer .etc {
  padding-top: 30px;
}

@media only screen and (max-width: 992px) {
  #footer .sns, #footer .etc {
    padding: 0;
    border-bottom: none;
  }
  #footer .sns {
    margin: 0 -10px 30px -10px;
  }
  #footer .etc {
    margin: 0 -10px 0 -10px;
  }
}

#footer .sns li, #footer .etc li {
  display: inline-block;
  padding-right: 30px;
  padding-left: 30px;
  margin-left: 30px;
  padding-bottom: 3px;
  line-height: 1;
  font-size: 14px;
  font-size: 1.4rem;
}

@media only screen and (max-width: 992px) {
  #footer .sns li {
    display: block;
    padding: 0;
    margin: 0;
    border-bottom: solid 1px #474648;
  }
}

#footer .sns li:not(:last-child) {
  border-right: solid 1px #666;
}

@media only screen and (max-width: 992px) {
  #footer .sns li:not(:last-child) {
    border-right: none;
  }
}

#footer .sns li a {
  padding-left: 25px;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}

@media only screen and (max-width: 992px) {
  #footer .sns li a {
    position: relative;
    display: block;
    padding: 20px 30px 20px 55px;
    text-align: left;
    background-position: 30px center;
  }
}

@media only screen and (max-width: 992px) {
  #footer .sns li a:hover {
    text-decoration: none;
  }
}

#footer .sns li.blank a:after, .app-footer-terms a[target="_blank"]:after {
  content: "";
  display: inline-block;
  background: url('../img/common/iconNewWindow.png') no-repeat;
  width: 14px;
  height: 14px;
  margin-left: 10px;
}

@media only screen and (max-width: 992px) {
  #footer .sns li.blank a:after {
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -5px;
  }
}

#footer .sns li.blog a {
  background-image: url('../img/common/iconBlog.png');
}

#footer .sns li.x a {
  background-image: url('../img/common/iconX.png');
}

#footer .sns li.fb a {
  background-image: url('../img/common/iconFacebook.png');
}

#footer .etc {
  border-bottom: none;
}

@media only screen and (max-width: 992px) {
  #footer .etc {
    margin-left: 0;
    margin-right: 0;
  }
}
/* partical footerのcss上書き */
.app-footer-nav-container {
  display: none !important;
}

.app-footer-terms {
  background-color: #2F2E34 !important;
}

#search .catWrap {
  margin: 10px 0;
}

/* CSS Document */
.container {
  max-width: 1080px;
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1080px;
  }
}

@media only screen and (max-width: 992px) {
  .container {
    max-width: 750px;
  }
}

@media only screen and (max-width: 992px) {
  .modPcOnly {
    display: none;
  }
}

.modSpOnly {
  display: none;
}

@media only screen and (max-width: 992px) {
  .modSpOnly {
    display: block;
  }
}

/*
#overview
見出し（title）
*/
/*.modTitle02*/
.modTitle01,
.modTitle02_type01,
.title_lv2,
#detail h2 {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  border-bottom: solid 2px #EEEEEE;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.modTitle01:after,
.modTitle02_type01:after,
.title_lv2:after,
#detail h2:after {
  content: "";
  position: absolute;
  width: 65px;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: #3B8DCD;
}

@media only screen and (max-width: 992px) {
  .modTitle01,
  .modTitle02_type01,
  .title_lv2,
  #detail h2 {
    margin-bottom: 20px;
  }
}

#detail h2 {
  margin-top: 40px;
}

/*.modTitle03Type01*/
.modTitle02,
.modTitle03_type01 {
  margin: 3px 0 20px;
  line-height: 1;
  font-size: 18px;
  font-size: 1.8rem;
  padding-left: 15px;
  font-weight: 500;
  position: relative;
}

.modTitle02:before,
.modTitle03_type01:before {
  content: "";
  display: block;
  width: 4px;
  position: absolute;
  left: 0;
  top: 1px;
  bottom: 1px;
  background: #3B8DCD;
}

@media only screen and (max-width: 992px) {
  .modTitle02,
  .modTitle03_type01 {
    padding-left: 15px;
  }
}

/*.modTitle03Type02*/
.modTitle04,
.modTitle03_type02,
.title_lv3,
#detail h3 {
  font-size: 20px;
  font-weight: bold;
  padding-left: 10px;
  background-color: #f5f5f5;
  line-height: 40px;
  border-left: 5px solid #bdbdbd;
  margin-top: 30px;
  margin-bottom: 20px;
}

/*.modTitle04_type01*/
.modTitle03,
.modTitle04_type01,
.title_lv4,
#detail h4 {
  border-left: 3px solid #3B8DCD;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin: 30px 0 20px;
  padding-left: 10px;
}

@media only screen and (max-width: 992px) {
  .modTitle03,
  .modTitle04_type01,
  .title_lv4,
  #detail h4 {
    margin-bottom: 15px;
  }
}

#detail h5,
#detail h6 {
  padding-bottom: 4px;
  font-weight: bold;
  margin: 20px 0;
  padding-bottom: 4px;
}

#detail h5 {
  border-bottom: 1px dotted #3B8DCD;
  font-size: 17px;
}

#detail h6 {
  font-size: 16px;
}

/*
#overview
ナビゲーション（nav）
*/
/*.modNavPagination
スマホでは最初と最後のli要素＋li.active以外は非表示になります。*/
.modNavPagination ul {
  background: #f5f5f5;
  padding: 8px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}
.modNavPagination.modNavPagination--search ul {
  padding: 8px 16px;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-areas: "prev next";
  column-gap: 5px;
}

.modNavPagination ul li {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
  margin: 1px;
}
.modNavPagination.modNavPagination--search ul li {
  width: 100%;
  position: relative;
  display: block;
}

.modNavPagination ul li:first-child, .modNavPagination ul li:last-child {
  position: absolute;
}

.modNavPagination.modNavPagination--search ul li:first-child,
.modNavPagination.modNavPagination--search ul li:last-child {
  position: inherit;
}

.modNavPagination ul li:first-child:before, .modNavPagination ul li:last-child:before {
  content: "";
  position: absolute;
  display: block;
  background: url('../img/common/iconArrowRightBlue.png');
  background-size: 6px auto;
  width: 6px;
  height: 9px;
  top: 50%;
  margin-top: -4px;
}

.modNavPagination ul li:first-child {
  left: 8px;
}
.modNavPagination.modNavPagination--search ul li:first-child {
  grid-area: prev;
  left: inherit;
}

.modNavPagination ul li:first-child:before {
  left: 10px;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.modNavPagination ul li:first-child a {
  padding: 8px 15px 8px 25px;
}

.modNavPagination ul li:last-child {
  right: 8px;
}
.modNavPagination.modNavPagination--search ul li:last-child {
  grid-area: next;
  right: inherit;
}

.modNavPagination ul li:last-child:before {
  right: 10px;
}

.modNavPagination ul li:last-child a {
  padding: 8px 25px 8px 15px;
}

@media only screen and (max-width: 600px) {
  .modNavPagination ul li {
    display: none;
  }
  .modNavPagination ul li:first-child, .modNavPagination ul li:last-child, .modNavPagination ul li.active {
    display: inline-block;
  }
}

.modNavPagination ul li a {
  display: block;
  text-decoration: none;
  color: #000;
  background-color: #fff;
  border: solid 1px #bdbdbd;
}

.modNavPagination ul li.active, .modNavPagination ul li.disabled,
.modNavPagination ul li a {
  padding: 8px 15px;
}

.modNavPagination ul li.active {
  background-color: #3b8dcd;
  color: #fff;
  border: solid 1px #3b8dcd;
}

.modNavPagination ul li.disabled {
  background-color: #fff;
}

/* modTxt
------------------------------------------------------------*/
/*
#overview
テキスト（txt）

テキスト
*/
/*.modTxtCatch01*/
p.modTxtCatch01 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 16px;
}

/*.modTxtIcon.modTxtIcon_lock*/
.modTxtIcon {
  padding-right: 3px;
}

.modTxtIcon:after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  line-height: 15px;
}

.modTxtIcon.modTxtIcon_lock:after {
  background: url('../img/common/iconLock.png') center 3px no-repeat;
  width: 15px;
  height: 18px;
}

.modTxtIcon.modTxtIcon_blank:after {
  background: url('../img/common/iconNewWindow.png') center 3px no-repeat;
  width: 15px;
  height: 17px;
}

/* detail */
#detail a.key {
  padding-right: 5px;
  position: relative;
}

#detail a.key:after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  line-height: 15px;
  background: url('../img/common/iconLock.png') 0px 0px no-repeat;
  width: 15px;
  height: 18px;
  top: 4px;
  position: relative;
}

#detail a.blank {
  padding-right: 5px;
  position: relative;
}

#detail a.blank:after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  line-height: 15px;
  background: url('../img/common/iconNewWindow.png') 0px 0px no-repeat;
  width: 15px;
  height: 18px;
  position: relative;
  top: 4px;
}

#detail a.allow {
  margin-right: 3px;
}

@media only screen and (max-width: 992px) {
  #detail a.allow {
    padding: 5px 0;
    background-position: left 12px;
  }
}

#detail a.allow:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../img/common/iconArrow02RightBlue.png') no-repeat;
  background-size: 13px;
  position: relative;
  top: 4px;
  margin-right: 5px;
}

#detail .release-date, #detail .disclaimer {
    font-size: 1.4rem;
    margin-top: 50px;
}

#detail .release-date {
    color: #ccc;
}

#detail .disclaimer {
    margin-top: 2rem;
}
@media only screen and (max-width: 992px) {
    #detail .disclaimer {
        font-size: 1.3rem;
    }
}

/*
#overview
ボタン（btn）
*/
/*.modBtn01*/
.modBtn01 > button {
  border: none;
}

.modBtn01 > button:disabled {
  opacity: 0.2;
  cursor: default;
}

.modBtn01 > a,
.modBtn01 button {
  border: 1px solid #00A1BB;
  text-align: center;
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: normal;
  padding: 13px 70px;
  text-decoration: none;
  color: #333;
  border-radius: 5px;
  background-image: url('../img/common/iconArrowRightWhite.png');
  background-repeat: no-repeat;
  background-position: calc( 100% - 15px) center;
}

@media only screen and (max-width: 992px) {
  .modBtn01 > a,
  .modBtn01 button {
    width: 100%;
  }
}

.modBtn01 > a:not(:disabled):hover,
.modBtn01 button:not(:disabled):hover {
  opacity: 1;
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #00A1BB;
  -webkit-transition: all  0.1s ease;
  transition: all  0.1s ease;
}

.modBtn01 > a.blank,
.modBtn01 button.blank {
  background: url('../img/common/iconNewWindowWhite.png') no-repeat calc( 100% - 15px) center;
}

.modBtn01 > a.blank:not(:disabled):hover,
.modBtn01 button.blank:not(:disabled):hover {
  background-image: url('../img/common/iconNewWindow.png') !important;
}

.modBtn01 > a.modBtn01_color_blue,
.modBtn01 button.modBtn01_color_blue {
  background-color: #00A1BB;
  color: #FFF;
}

.modBtn01 > a.modBtn01_color_blue:not(:disabled):hover,
.modBtn01 button.modBtn01_color_blue:not(:disabled):hover {
  background-image: url('../img/common/iconArrowRightBlue.png');
}

.modBtn01_center {
  text-align: center;
}

.modBlockSideMenu .modBtn01 button {
  font-weight: normal;
  text-align: left;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  background-image: none;
  border-radius: 0;
  padding: 10px 20px;
  margin-bottom: 10px;
}

/*.modBtn02*/
.modBtn02 > a {
  display: inline-block;
  padding: 10px;
  border: solid 1px #CCC;
  min-width: 280px;
  text-align: center;
}

@media only screen and (max-width: 992px) {
  .modBtn02 > a {
    position: relative;
    min-width: inherit;
    width: 100%;
  }
}

.modBtn02 > a:hover {
  text-decoration: none;
}

.modBtn02 > a:after {
  content: "";
  display: inline-block;
  background: url('../img/common/iconArrowRightBlue.png') no-repeat;
  width: 12px;
  height: 14px;
  margin-left: 20px;
}

@media only screen and (max-width: 992px) {
  .modBtn02 > a:after {
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -7px;
  }
}

.modBtn02_center {
  text-align: center;
}

.modBtn02_center > a {
  background-color: #fff;
  border: 2px solid #00A1BB;
  border-radius: 5px;
}

.modBtn02_type02 {
  position: relative;
}

.modBtn02_type02 > a {
  text-align: left;
  min-width: inherit;
  width: 100%;
}

.modBtn02_type02 > a:after {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -7px;
}

/*.modBtn03*/
.modBtn03 {
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #00A1BB;
  border-radius: 5px;
  padding: 13px 40px 13px 30px;
  position: relative;
}

@media only screen and (max-width: 992px) {
  .modBtn03 {
    width: 100%;
  }
}

.modBtn03 + .modBtn_under {
  margin-top: 5px;
}

.modBtn03:hover {
  text-decoration: none;
  background-color: #00A1BB;
  color: #FFF;
}

.modBtn03:hover:after {
  background-image: url('../img/common/iconArrowRightWhite.png');
}

.modBtn03:after {
  content: "";
  display: inline-block;
  background: url('../img/common/iconArrowRightBlue.png') no-repeat;
  width: 12px;
  height: 14px;
  margin-left: 20px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -7px;
}

.modBtn03.icon {
  padding-left: 35px;
}

.modBtn03.icon:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  top: 18px;
  left: 10px;
  margin-right: 5px;
  background-repeat: no-repeat;
}

.modBtn03.icon_lock:before {
  background-image: url('../img/common/iconLock.png');
  top: 19px;
  left: 12px;
}

.modBtn03.icon_lock:hover:before {
  background-image: url('../img/common/iconLockWhite.png');
}

/*#detail */
#detail a.btn-key {
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #00A1BB;
  border-radius: 5px;
  padding: 13px 40px 13px 30px;
  position: relative;
  background: url('../img/common/iconLock.png') no-repeat 10px 17px;
  margin: 5px 0;
  text-indent: initial;
}

@media only screen and (max-width: 992px) {
  #detail a.btn-key {
    width: 100%;
  }
}

#detail a.btn-key + .modBtn_under {
  margin-top: 5px;
}

#detail a.btn-key:hover {
  text-decoration: none;
  background-color: #00A1BB;
  color: #FFF;
  background-image: url('../img/common/iconLockWhite.png');
}

#detail a.btn-key:hover:after {
  background-image: url('../img/common/iconArrowRightWhite.png');
}

#detail a.btn-key:after {
  content: "";
  display: inline-block;
  background: url('../img/common/iconArrowRightBlue.png') no-repeat;
  width: 12px;
  height: 14px;
  margin-left: 20px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -7px;
}

#detail a.btn {
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #00A1BB;
  border-radius: 5px;
  padding: 13px 40px 13px 13px;
  position: relative;
  margin: 5px 0;
  text-indent: initial;
}

@media only screen and (max-width: 992px) {
  #detail a.btn {
    width: 100%;
  }
}

#detail a.btn + .modBtn_under {
  margin-top: 5px;
}

#detail a.btn:hover {
  text-decoration: none;
  background-color: #00A1BB;
  color: #FFF;
}

#detail a.btn:hover:after {
  background-image: url('../img/common/iconArrowRightWhite.png');
}

#detail a.btn:after {
  content: "";
  display: inline-block;
  background: url('../img/common/iconArrowRightBlue.png') no-repeat;
  width: 12px;
  height: 14px;
  margin-left: 20px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -7px;
}

#detail a.btn-pdf {
  font-size: 14px;
  font-size: 1.4rem;
  display: table-cell;
  vertical-align: middle;
  height: 60px;
  line-height: 1.5;
  border: solid 1px #e0e0e0;
  position: relative;
  padding: 0 55px 0 60px;
  margin: 5px 0;
  background: url('../img/common/iconDownload.png') no-repeat calc( 100% - 15px) center;
  text-indent: initial;
}

@media only screen and (max-width: 992px) {
  #detail a.btn-pdf {
    display: block;
    height: auto;
    padding: 12px 30px 12px 50px;
  }
}

#detail a.btn-pdf:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 51px;
  height: 50px;
  top: 4px;
  left: 6px;
  margin-right: 5px;
  background-repeat: no-repeat;
  background-image: url('../img/common/iconPdf.png');
}

@media only screen and (max-width: 992px) {
  #detail a.btn-pdf:before {
    background-size: 40px auto;
  }
}

#detail a.btn-pdf:hover {
  text-decoration: none;
  -webkit-transition: all  0.2s ease;
  transition: all  0.2s ease;
  opacity: 1;
  border-color: #bdbdbd;
  -webkit-box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

/*
#overview
ブロック（block）
*/
/*.modBlock01*/
.modBlock01 a,
.modBlcok01 a {
  display: block;
}

.modBlock01 a:hover,
.modBlcok01 a:hover {
  text-decoration: none;
}

.modBlock01 .thumb,
.modBlcok01 .thumb {
  display: block;
}

.modBlock01 img,
.modBlcok01 img {
  width: 100%;
  height: auto;
}

.modBlock01 .title,
.modBlcok01 .title {
  display: block;
  border: solid 1px #E6E6E6;
  line-height: 1;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 18px 20px 18px 18px;
  background: url('../img/common/iconArrowRightBlue@2x.png') no-repeat calc(100% - 18px) center;
  background-size: 9px;
}

@media only screen and (max-width: 992px) {
  .modBlock01 .title,
  .modBlcok01 .title {
    padding: 10px 40px 10px 10px;
  }
}

/*.modBlock02*/
.modBlock02 {
  margin-bottom: 30px;
}

.modBlock02 a,
.modBlcok02 a {
  display: table;
  border: solid 1px #E6E6E6;
  padding: 15px;
  background: #FFF;
  position: relative;
  width: 100%;
}

@media only screen and (max-width: 992px) {
  .modBlock02 a,
  .modBlcok02 a {
    padding: 8px;
  }
}

.modBlock02 a:hover,
.modBlcok02 a:hover {
  text-decoration: none;
}

.modBlock02 a:before,
.modBlcok02 a:before {
  content: "";
  position: absolute;
  display: block;
  background: url('../img/common/iconArrowRightBlue.png');
  width: 9px;
  height: 14px;
  right: 20px;
  top: 50%;
  margin-top: -7px;
}

.modBlock02 a.blank:before,
.modBlcok02 a.blank:before {
  background: url('../img/common/iconNewWindow.png');
  width: 14px;
}

.modBlock02 .thumb,
.modBlock02 .body,
.modBlcok02 .thumb,
.modBlcok02 .body {
  display: table-cell;
}

.modBlock02 .thumb,
.modBlcok02 .thumb {
  width: 143px;
}

@media only screen and (max-width: 992px) {
  .modBlock02 .thumb,
  .modBlcok02 .thumb {
    width: 90px;
  }
}

.modBlock02 img,
.modBlcok02 img {
  min-width: 143px;
  height: 143px;
}

@media only screen and (max-width: 992px) {
  .modBlock02 img,
  .modBlcok02 img {
    min-width: 90px;
    height: 90px;
  }
}

.modBlock02 .body,
.modBlcok02 .body {
  padding: 0 30px 0 0;
  vertical-align: middle;
}

@media only screen and (max-width: 992px) {
  .modBlock02 .body,
  .modBlcok02 .body {
    padding: 0 30px 0 8px;
  }
}

.modBlock02 .body_vTop,
.modBlcok02 .body_vTop {
  vertical-align: top;
}

.modBlock02 .thumb + .body,
.modBlcok02 .thumb + .body {
  padding-left: 18px;
}

@media only screen and (max-width: 992px) {
  .modBlock02 .thumb + .body,
  .modBlcok02 .thumb + .body {
    padding-left: 10px;
  }
}

.modBlock02 .title,
.modBlcok02 .title {
  display: block;
  font-weight: 700;
  width: 100%;
  margin-bottom: 5px;
}

.modBlock02 .title + dd,
.modBlcok02 .title + dd {
  font-size: 1.4rem;
  font-size: 14px;
  line-height: 1.7;
  width: 100%;
  padding-bottom: 0;
}

.modBlock02 p,
.modBlcok02 p {
  font-size: 1.4rem;
  font-size: 14px;
  line-height: 1.7;
  width: 100%;
  padding-bottom: 0;
}

@media only screen and (max-width: 992px) {
  .modBlock02 .smpNone,
  .modBlcok02 .smpNone {
    display: none;
  }
}

.side .modBlock02 a, .side
.modBlcok02 a {
  overflow: hidden;
}

.side .modBlock02 a:before, .side
.modBlcok02 a:before {
  right: 15px;
}

.side .modBlock02 .thumb,
.side .modBlock02 .body, .side
.modBlcok02 .thumb,
.side
.modBlcok02 .body {
  display: block;
}

.side .modBlock02 .thumb, .side
.modBlcok02 .thumb {
  width: 78px;
  float: left;
}

@media only screen and (max-width: 992px) {
  .side .modBlock02 .thumb, .side
  .modBlcok02 .thumb {
    width: 86px;
  }
}

.side .modBlock02 .thumb img, .side
.modBlcok02 .thumb img {
  min-width: 78px;
  height: 78px;
}

@media only screen and (max-width: 992px) {
  .side .modBlock02 .thumb img, .side
  .modBlcok02 .thumb img {
    min-width: 86px;
    height: 86px;
  }
}

.side .modBlock02 .body, .side
.modBlcok02 .body {
  padding: 0 20px 0 95px;
}

@media only screen and (max-width: 992px) {
  .side .modBlock02 .body, .side
  .modBlcok02 .body {
    padding: 0 25px 0 95px;
  }
}

.side .modBlock02 .body .title, .side
.modBlcok02 .body .title {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7;
  padding-bottom: 0;
}

.side .modBlock02 .body .text, .side
.modBlcok02 .body .text {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

/*.modBlock03*/
.modBlock03 a {
  display: flex;
  font-size: 1.4rem;
  border: solid 1px #e0e0e0;
  background: #FFF;
  position: relative;
  width: 100%;
}

@media only screen and (max-width: 992px) {
  .modBlock03 a {
    display: block;
  }
}

.modBlock03 a:hover {
  text-decoration: none;
  opacity: 1;
  border-color: #bdbdbd;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
  transition: all  0.2s ease;
}

.modBlock03 a:hover:before {
  right: 17px;
  transition: all  0.2s ease;
}

.modBlock03 a:before {
  content: "";
  position: absolute;
  display: block;
  background: url('../img/common/iconArrowRightBlue.png');
  width: 9px;
  height: 14px;
  z-index: 9;
  right: 15px;
  top: 50%;
  margin-top: -2px;
}

@media only screen and (max-width: 992px) {
  .modBlock03 a:before {
    display: none;
  }
}

.modBlock03 a.blank:before {
  background: url('../img/common/iconNewWindow.png');
  width: 14px;
}

@media only screen and (max-width: 992px) {
  .modBlock03 a.blank:before {
    display: none;
  }
}

.modBlock03 .thumb,
.modBlock03 .body {
  display: table-cell;
}

@media only screen and (max-width: 992px) {
  .modBlock03 .thumb,
  .modBlock03 .body {
    display: block;
  }
}

.modBlock03 .thumb {
  background-color: #eee;
  text-align: center;
  overflow: hidden;
  width: 40%;
}

@media only screen and (max-width: 992px) {
  .modBlock03 .thumb {
    width: auto;
  }
}

.modBlock03 img {
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 992px) {
  .modBlock03 img {
    width: 100%;
    height: auto;
  }
}

.modBlock03 .body {
  padding: 10px 40px 10px 15px;
  vertical-align: middle;
  float: none !important;
  width: 60% !important;
  position: relative;
}

@media only screen and (max-width: 992px) {
  .modBlock03 .body {
    padding: 8px 30px 8px 8px;
    width: auto !important;
  }
  .modBlock03 .body:before {
    content: "";
    position: absolute;
    display: block;
    background: url('../img/common/iconArrowRightBlue.png');
    width: 9px;
    height: 14px;
    z-index: 9;
    right: 10px;
    top: 50%;
    margin-top: -2px;
  }
  .modBlock03 .body.blank:before {
    background: url('../img/common/iconNewWindow.png');
    width: 14px;
  }
}

.modBlock03 .body_vTop {
  vertical-align: top;
}

.modBlock03 .title {
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  width: 100%;
}

.modBlock03 .title + dd {
  width: 100%;
  padding-bottom: 0;
  margin-top: 5px;
}

.modBlock03 p {
  width: 100%;
  padding-bottom: 0;
  margin-top: 5px;
}

@media only screen and (max-width: 992px) {
  .modBlock03 .smpNone {
    display: none;
  }
}

/*.modBlock04*/
.modBlock04,
.modBlcok04 {
  padding: 25px 15px 15px;
  border-top: solid 3px #595757;
  border-right: solid 1px #bdbdbd;
  border-bottom: solid 1px #bdbdbd;
  border-left: solid 1px #bdbdbd;
  background: #fff;
}

.modBlock04 .subTitle,
.modBlcok04 .subTitle {
  color: #3B8DCD;
  font-size: 14px;
  font-size: 1.4rem;
}

.modBlock04 .title,
.modBlcok04 .title {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.6;
}

.modBlock04 .text,
.modBlcok04 .text {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.6;
}

@media only screen and (max-width: 992px) {
  .modBlock04 .text,
  .modBlcok04 .text {
    margin-bottom: 0;
  }
}

.modBlock04 > ul,
.modBlcok04 > ul {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0 0 0 1.5em;
  margin-bottom: 10px;
}

.modBlock04 .modBtn01 a,
.modBlcok04 .modBtn01 a {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 13px 10px;
  margin-bottom: 10px;
}

/*.modBlock05*/
.modBlock05,
.modBlcok05 {
  border: solid 1px #bdbdbd;
  margin: 20px 0;
}

.modBlock05.sectionWrapper_attention,
.modBlcok05.sectionWrapper_attention {
  margin-bottom: 40px;
}

.modBlock05 .inner,
.modBlcok05 .inner {
  padding: 20px 30px;
  overflow: hidden;
}

@media only screen and (max-width: 992px) {
  .modBlock05 .inner,
  .modBlcok05 .inner {
    padding: 20px;
  }
}

.modBlock05 .text,
.modBlcok05 .text {
  float: left;
  width: 60%;
}

@media only screen and (max-width: 992px) {
  .modBlock05 .text,
  .modBlcok05 .text {
    float: none;
    width: auto;
  }
}

.modBlock05 .movie,
.modBlcok05 .movie {
  float: right;
}

@media only screen and (max-width: 992px) {
  .modBlock05 .movie,
  .modBlcok05 .movie {
    text-align: center;
    float: none;
  }
}

.modBlock05 .title,
.modBlcok05 .title {
  background: #EEEEEE;
  font-weight: 500;
  padding: 8px 15px;
  position: relative;
}

.modBlock05 .title.icon,
.modBlcok05 .title.icon {
  padding-left: 45px;
}

.modBlock05 .title.icon:before,
.modBlcok05 .title.icon:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  top: 8px;
  left: 10px;
  margin-right: 5px;
  background-repeat: no-repeat;
}

.modBlock05 .title.icon_info:before,
.modBlcok05 .title.icon_info:before {
  background-image: url('../img/common/iconInfoBlue.png');
  top: 5px;
}

.modBlock05 .title.icon_alert:before,
.modBlcok05 .title.icon_alert:before {
  background-image: url('../img/common/iconAlert.png');
}

.modBlock05 .subTitle,
.modBlcok05 .subTitle {
  font-weight: 500;
}

.modBlock05 h4,
.modBlcok05 h4 {
  margin-bottom: 5px;
}

/*.modBlockEnquete*/
.modBlockEnquete .inner,
.modBlcokEnquete .inner {
  padding: 30px;
  border-top: solid 1px #787676;
  border-bottom: solid 1px #787676;
}

@media only screen and (max-width: 992px) {
  .modBlockEnquete .inner,
  .modBlcokEnquete .inner {
    padding: 30px 0;
  }
}

.modBlockEnquete .title,
.modBlcokEnquete .title {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

@media only screen and (max-width: 992px) {
  .modBlockEnquete .title,
  .modBlcokEnquete .title {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.modBlockEnquete .checkList,
.modBlcokEnquete .checkList {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.modBlockEnquete .checkList:after,
.modBlcokEnquete .checkList:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

@media only screen and (max-width: 992px) {
  .modBlockEnquete .checkList,
  .modBlcokEnquete .checkList {
    padding: 10px;
    max-width: none;
    margin-bottom: 30px;
  }
}

.modBlockEnquete .checkList li,
.modBlcokEnquete .checkList li {
  float: left;
  width: 48%;
  margin: 0 1%;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 5px 0;
}

@media only screen and (max-width: 992px) {
  .modBlockEnquete .checkList li,
  .modBlcokEnquete .checkList li {
    float: none;
    width: auto;
    margin: 0;
  }
}

.modBlockEnquete .text,
.modBlcokEnquete .text {
  margin-bottom: 10px;
}

.modBlockEnquete .text p,
.modBlcokEnquete .text p {
  font-weight: 300;
  padding-bottom: 5px;
}

.modBlockEnquete .text textarea,
.modBlcokEnquete .text textarea {
  height: 5em;
  font-size: 13px;
  font-size: 1.3rem;
}

.modBlockEnquete .text textarea:placeholder-shown,
.modBlcokEnquete .text textarea:placeholder-shown {
  color: #CECECE;
}

.modBlockEnquete .text textarea::-webkit-input-placeholder,
.modBlcokEnquete .text textarea::-webkit-input-placeholder {
  color: #CECECE;
}

.modBlockEnquete .text textarea:-moz-placeholder,
.modBlcokEnquete .text textarea:-moz-placeholder {
  color: #CECECE;
}

.modBlockEnquete .text textarea::-moz-placeholder,
.modBlcokEnquete .text textarea::-moz-placeholder {
  color: #CECECE;
}

.modBlockEnquete .text textarea:-ms-input-placeholder,
.modBlcokEnquete .text textarea:-ms-input-placeholder {
  color: #CECECE;
}

.modBlockEnquete .foot,
.modBlcokEnquete .foot {
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
  padding: 5px;
  font-weight: normal;
}

.modBlockEnquete .page02,
.modBlockEnquete .page03,
.modBlcokEnquete .page02,
.modBlcokEnquete .page03 {
  display: none;
}

.modBlockEnquete .page02 .caption,
.modBlcokEnquete .page02 .caption {
  margin-top: 20px;
  font-size: 14px;
  font-size: 1.4rem;
}

.modBlockEnquete .page03 .txt,
.modBlcokEnquete .page03 .txt {
  text-align: center;
}

.modBlockEnquete .page03 .logo,
.modBlcokEnquete .page03 .logo {
  text-align: center;
}

/*.modBlockContact*/
.modBlockContact,
.modBlcokContact {
  padding: 30px;
  background-color: #fbfdfe;
  border: solid 1px #bdbdbd;
  border-top: solid 4px #3b8dcd;
}

@media only screen and (max-width: 992px) {
  .modBlockContact,
  .modBlcokContact {
    padding: 30px 15px;
  }
}

.modBlockContact .title,
.modBlcokContact .title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 15px;
}

@media only screen and (max-width: 992px) {
  .modBlockContact .title,
  .modBlcokContact .title {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

/*.modBlockSearch*/
@media only screen and (max-width: 992px) {
    .modBlockSearch .inner {
        padding: 0;
    }
}

.modBlockSearch .search {
    padding: 12px;
    background: rgba(0, 0, 0, 0.1);
    display: inline-block;
    border-radius: 3px;
    width: 100%;
    max-width: 698px;
}

@media only screen and (max-width: 992px) {
    .modBlockSearch .search {
        padding: 8px;
    }
}

.modBlockSearch .search .keyword,
.modBlockSearch .search .btn {
      float: left;
}

.modBlockSearch .search input,
.modBlockSearch .search button {
    height: 46px;
}

.modBlockSearch .search input {
    border: none;
    border-radius: 0;
}

.modBlockSearch .search .keyword {
    position: relative;
    min-width: 81%;
}

@media only screen and (max-width: 992px) {
    .modBlockSearch .search .keyword {
        min-width: inherit;
        width: calc( 100% - 50px);
    }
}

.modBlockSearch .search input {
    min-width: 100%;
    padding: 9px 18px;
}

.modBlockSearch .search input:placeholder-shown {
    color: #CECECE;
}

.modBlockSearch .search input::-webkit-input-placeholder {
    color: #CECECE;
}

.modBlockSearch .search input:-moz-placeholder {
    color: #CECECE;
}

.modBlockSearch .search input::-moz-placeholder {
    color: #CECECE;
}

.modBlockSearch .search input:-ms-input-placeholder {
    color: #CECECE;
}

@media only screen and (max-width: 992px) {
    .modBlockSearch .search input {
        min-width: inherit;
        width: 100%;
        padding: 9px;
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.modBlockSearch .search .btn {
    min-width: 19%;
}

@media only screen and (max-width: 992px) {
    .modBlockSearch .search .btn {
        min-width: inherit;
    }
}

.modBlockSearch .search button {
    min-width: 100%;
    background-color: #00A1BB;
    border: none;
    padding: 9px;
    color: #FFF;
    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;
}

@media only screen and (max-width: 992px) {
    .modBlockSearch .search button {
        min-width: inherit;
        width: 50px;
    }
}

.modBlockSearch .search button:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    background: url('../img/common/iconSearch.png') no-repeat;
    background-size: 16px;
}

@media only screen and (max-width: 992px) {
    .modBlockSearch .search button:before {
        margin-right: 0;
    }
}

@media only screen and (max-width: 992px) {
    .modBlockSearch .search button span {
        display: none;
    }
}

.modBlockSearch .foot {
    padding-top: 5px;
    padding-left: 10px;
    overflow: hidden;
}

@media only screen and (max-width: 992px) {
    .modBlockSearch .foot {
        padding-top: 10px;
    }
}

.modBlockSearch .foot .title {
    font-size: 15px;
    font-size: 1.5rem;
    float: left;
    padding-right: 5px;
}

@media only screen and (max-width: 992px) {
    .modBlockSearch .foot .title {
        padding-bottom: 0;
    }
}

.modBlockSearch .foot ul {
    float: left;
}

@media only screen and (max-width: 992px) {
    .modBlockSearch .foot ul {
        width: auto;
    }
}

.modBlockSearch .foot ul li {
    display: inline-block;
}

@media only screen and (max-width: 992px) {
    .modBlockSearch .foot ul li {
        margin-right: 10px;
    }
}

/*.modBlockSideMenu*/
@media only screen and (max-width: 992px) {
  .modBlockSideMenu,
  .modBlcokSideMenu {
    display: none;
  }
}

.modBlockSideMenu .title,
.modBlcokSideMenu .title {
  font-weight: 500;
  padding: 15px;
  background-color: #f5f5f5;
  border-top: solid 3px #3B8DCD;
  font-size: 16px;
  font-size: 1.6rem;
}

.modBlockSideMenu .title2,
.modBlcokSideMenu .title2 {
  font-weight: 500;
  padding: 15px 10px;
  background-color: #f5f5f5;
  border-top: solid 3px #3B8DCD;
  font-size: 16px;
  font-size: 1.6rem;
}

.modBlockSideMenu .inner,
.modBlcokSideMenu .inner {
  border-left: solid 2px #eee;
  border-right: solid 2px #eee;
  border-bottom: solid 2px #eee;
}

.modBlockSideMenu .inner ul li,
.modBlcokSideMenu .inner ul li {
  font-size: 14px;
  font-size: 1.4rem;
}

.modBlockSideMenu .inner ul li:not(.active):hover,
.modBlcokSideMenu .inner ul li:not(.active):hover {
  background-color: #fafafa;
}

.modBlockSideMenu .inner ul li.open:hover,
.modBlcokSideMenu .inner ul li.open:hover {
  background-color: inherit;
}

.modBlockSideMenu .inner ul li:hover a,
.modBlcokSideMenu .inner ul li:hover a {
  opacity: 1;
}

.modBlockSideMenu .inner ul li:first-child a,
.modBlcokSideMenu .inner ul li:first-child a {
  border-top: 2px solid transparent;
}

.modBlockSideMenu .inner ul li.active,
.modBlcokSideMenu .inner ul li.active {
  background: #3B8DCD;
  font-weight: 500;
}

.modBlockSideMenu .inner ul li.active a,
.modBlcokSideMenu .inner ul li.active a {
  color: #FFFFFF;
  border-top: 2px solid transparent;
  cursor: default;
}

.modBlockSideMenu .inner ul li.active a:before,
.modBlcokSideMenu .inner ul li.active a:before {
  content: none;
}

.modBlockSideMenu .inner ul li.active + li a,
.modBlcokSideMenu .inner ul li.active + li a {
  border-top: 2px solid transparent;
}

.modBlockSideMenu .inner ul li a,
.modBlcokSideMenu .inner ul li a {
  display: block;
  position: relative;
  border-top: solid 2px #eee;
  padding: 10px 0 10px 15px;
}

.modBlockSideMenu .inner ul li a:hover,
.modBlcokSideMenu .inner ul li a:hover {
  text-decoration: none;
}

.modBlockSideMenu .inner ul li a:hover:before,
.modBlcokSideMenu .inner ul li a:hover:before {
  right: 13px;
  -webkit-transition: all  0.2s ease;
  transition: all  0.2s ease;
  opacity: 1;
}

.modBlockSideMenu .inner ul li a:before,
.modBlcokSideMenu .inner ul li a:before {
  content: url('../img/common/iconArrowRightBlue.png');
  display: block;
  position: absolute;
  font-size: 0;
  line-height: 1;
  top: 50%;
  right: 15px;
  width: 9px;
  height: 14px;
  margin-top: -7px;
}

.modBlockSideMenu .inner ul .iconBlank:after,
.modBlcokSideMenu .inner ul .iconBlank:after {
  content: "";
  display: inline-block;
  background: url('../img/common/iconNewWindow.png') no-repeat;
  width: 14px;
  height: 14px;
  margin-left: 10px;
}

.modBlockSideMenu .foot,
.modBlcokSideMenu .foot {
  border-left: solid 2px #eee;
  border-right: solid 2px #eee;
  border-bottom: solid 2px #eee;
  margin-bottom: 20px;
}

.modBlockSideMenu .foot a,
.modBlcokSideMenu .foot a {
  display: block;
  position: relative;
  padding: 10px 15px 10px 35px;
}

.modBlockSideMenu .foot a:hover,
.modBlcokSideMenu .foot a:hover {
  text-decoration: none;
  background-color: #fafafa;
  opacity: 1;
}

.modBlockSideMenu .foot a:hover:before,
.modBlcokSideMenu .foot a:hover:before {
  left: 13px;
  -webkit-transition: all  0.2s ease;
  transition: all  0.2s ease;
  opacity: 1;
}

.modBlockSideMenu .foot a:before,
.modBlcokSideMenu .foot a:before {
  content: url('../img/common/iconArrowLeftBlue.png');
  display: block;
  position: absolute;
  font-size: 0;
  line-height: 1;
  top: 50%;
  left: 15px;
  width: 9px;
  height: 14px;
  margin-top: -7px;
}

.modBlockSideMenu_type02 .inner ul > li a,
.modBlcokSideMenu_type02 .inner ul > li a {
  line-height: 1.4;
}

.modBlockSideMenu_type02 .inner ul > li a:hover:before,
.modBlcokSideMenu_type02 .inner ul > li a:hover:before {
  right: 15px;
  -webkit-transition: inherit;
  transition: inherit;
}

.modBlockSideMenu_type02 .inner ul > li a:before,
.modBlcokSideMenu_type02 .inner ul > li a:before {
  content: url('../img/common/iconArrowDownBlue.png');
  display: block;
  position: absolute;
  font-size: 0;
  line-height: 1;
  top: 50%;
  right: 15px;
  width: 15px;
  height: 10px;
  margin-top: -5px;
}

.modBlockSideMenu_type02 .inner ul > li.open > a:before,
.modBlcokSideMenu_type02 .inner ul > li.open > a:before {
  content: url('../img/common/iconArrowUpBlue.png');
}

.modBlockSideMenu_type02 .inner .under,
.modBlcokSideMenu_type02 .inner .under {
  padding: 15px;
  background-color: #f5f5f5;
  display: none;
}

.modBlockSideMenu_type02 .inner .under li a,
.modBlcokSideMenu_type02 .inner .under li a {
  padding: 10px;
  line-height: 1.4;
  font-size: 14px;
  font-size: 1.4rem;
  border-top: none;
}

.modBlockSideMenu_type02 .inner .under li a:hover,
.modBlcokSideMenu_type02 .inner .under li a:hover {
  background-color: #FFF;
}

.modBlockSideMenu_type02 .inner .under li a:before,
.modBlcokSideMenu_type02 .inner .under li a:before {
  content: none;
}

.modBlockSideMenu_type02 .inner .under li.active,
.modBlcokSideMenu_type02 .inner .under li.active {
  background: none;
  border-left: solid 3px #3B8DCD;
}

.modBlockSideMenu_type02 .inner .under li.active a,
.modBlcokSideMenu_type02 .inner .under li.active a {
  color: #333;
  border-top: none;
  font-weight: bold;
}

.modBlockSideMenu_type02 .inner .under li.active a:before,
.modBlcokSideMenu_type02 .inner .under li.active a:before {
  background: transparent;
}

.modBlockSideMenu_type03 .inner ul > li a,
.modBlcokSideMenu_type03 .inner ul > li a {
  padding-right: 30px;
}

/*
#overview
表（table）
*/
.modTbl01 {
  table-layout: fixed;
  margin: 0 0 35px;
  border-top: 2px solid #595757;
  position: relative;
}

.modTbl01:after {
  content: "";
  height: 1px;
  position: absolute;
  display: block;
  background: #123;
  bottom: 0px;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 992px) {
  .modTbl01 {
    margin-bottom: 25px;
  }
}

.modTbl01 th, .modTbl01 td {
  padding: 13px 10px 12px;
  border-left: solid 1px #E0E0DF;
  font-size: 14px;
  font-size: 1.4rem;
}

.modTbl01 th:first-child, .modTbl01 td:first-child {
  border-left: 0px;
}

@media only screen and (max-width: 600px) {
  .modTbl01 th, .modTbl01 td {
    padding: 8px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.modTbl01 th.center, .modTbl01 td.center {
  text-align: center;
}

.modTbl01 th.vaTop, .modTbl01 td.vaTop {
  vertical-align: top;
}

.modTbl01 th {
  background-color: #E0E0E0;
  border-bottom: solid 1px #BDBCBC;
  border-left: solid 1px #BDBCBC;
  font-weight: 500;
}

.modTbl01 td {
  border-top: solid 1px #E0E0DF;
}

.modTbl01 td:first-child {
  border-left: 0px;
}

.modTbl01_center th, .modTbl01_center td {
  text-align: center;
}

.modTbl01_lineColor tr:nth-child(odd) td {
  background-color: #FAFAFA;
}

.modTbl01_thWidthType02 tr th {
  width: 25%;
}

.modTbl01_thWidthType03 tr th {
  width: 23%;
}

.modTbl01_thWidthType04 tr th:first-child {
  width: 23%;
}

@media only screen and (max-width: 600px) {
  .modTbl01_smp_column1 tr td, .modTbl01_smp_column1 tr th {
    display: block;
    width: auto;
    border-left: 0px;
  }
}

@media only screen and (max-width: 600px) {
  .modTbl01_smp_column1 tr td:nth-child(2) {
    border-top: 0px;
  }
}

@media only screen and (max-width: 600px) {
  .modTbl01Wrap_smp_scroll {
    width: 100%;
    overflow-x: scroll;
  }
}

@media only screen and (max-width: 600px) {
  .modTbl01Wrap_smp_scroll table {
    width: 640px;
  }
}

.modTbl01Wrap_footLink table {
  margin-bottom: 15px;
}

.modTbl01Wrap_footLink .foot {
  margin-bottom: 50px;
}

.modTbl01Wrap_footLink .foot a {
  background: url('../img/common/iconArrow02RightBlue.png') no-repeat left 8px;
  padding-left: 22px;
  display: inline-block;
  margin-bottom: 20px;
  text-align: left;
}

#detail table {
  table-layout: fixed;
  margin: 30px 0 20px;
  border-top: 2px solid #595757;
  position: relative;
}

#detail table:after {
  content: "";
  height: 1px;
  position: absolute;
  display: block;
  background: #123;
  bottom: 0px;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 992px) {
  #detail table {
    margin-bottom: 25px;
  }
}

#detail table th, #detail table td {
  padding: 13px 10px 12px;
  border-left: solid 1px #E0E0DF;
  font-size: 14px;
  font-size: 1.4rem;
}

#detail table th:first-child, #detail table td:first-child {
  border-left: 0px;
}

@media only screen and (max-width: 600px) {
  #detail table th, #detail table td {
    padding: 8px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

#detail table th.center, #detail table td.center {
  text-align: center;
}

#detail table th.vaTop, #detail table td.vaTop {
  vertical-align: top;
}

#detail table th {
  background-color: #E0E0E0;
  border-bottom: solid 1px #BDBCBC;
  border-left: solid 1px #BDBCBC;
  font-weight: 500;
}

#detail table td {
  border-top: solid 1px #E0E0DF;
}

#detail table td:first-child {
  border-left: 0px;
}

#detail table tr:nth-child(2n) {
  background: #fafafa;
}

#detail h2 + table, #detail h3 + table, #detail h4 + table, #detail h5 + table, #detail h6 + table {
  margin-top: 0;
}

#detail .w10 table th:first-child {
  width: 10%;
}

#detail .w20 table th:first-child {
  width: 20%;
}

#detail .w30 table th:first-child {
  width: 30%;
}

#detail .w40 table th:first-child {
  width: 40%;
}

#detail .w60 table th:first-child {
  width: 60%;
}

#detail .w70 table th:first-child {
  width: 70%;
}

#detail .w80 table th:first-child {
  width: 80%;
}

#detail .w90 table th:first-child {
  width: 90%;
}

/*
#overview
リスト（ul,ol）
*/
/*.modListNormal*/
.modListNormal {
  margin: 0 0 10px 20px;
}

#detail ul {
  margin: 20px 0 20px 20px;
}

#detail ul li:before {
  content: "\0030fb";
  margin-left: -1em;
  display: inline-block;
  width: 24px;
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
  position: relative;
  top: 4px;
  color: #3B8DCD;
}

#detail ul li ul {
  margin: 0px 0px 0px 20px;
}

#detail h2 + ul, #detail h3 + ul, #detail h4 + ul, #detail h5 + ul, #detail h6 + ul {
  margin-top: 0;
}

#detail h2 + ol, #detail h3 + ol, #detail h4 + ol, #detail h5 + ol, #detail h6 + ol {
  margin-top: 0;
}

#detail ol {
  counter-reset: li;
  list-style: none;
}

#detail ol > li {
  line-height: 2.0;
  text-indent: -1em;
  margin-left: 1em;
}

#detail ol > li:before {
  color: #3B8DCD;
  counter-increment: li;
  content: counter(li) ". ";
}

#detail ol > li p {
  display: inline;
}

#detail ol ul {
  margin: 0 0 0 2.4em;
}

#detail ol ul li {
  list-style: none;
  margin-left: 0;
}

#detail dl {
  margin-bottom: 20px;
}

#detail dt {
  margin-bottom: 1.4em;
}

#detail dd {
  margin-left: 24px;
  margin-bottom: 1.4em;
}

ul.modListNormal li:before {
  content: "\0030fb";
  margin-left: -1em;
  display: inline-block;
  width: 24px;
  text-align: center;
  font-size: 24px;
  line-height: 1;
  position: relative;
  top: 4px;
  color: #3B8DCD;
}

ol.modListNormal li {
  list-style: decimal;
}

/*.modListIndent01*/
.modListIndent01 li {
  text-indent: -1em;
  margin: 0 0 0 1em;
}

/*.modListIndent02*/
.modListIndent02 li {
  text-indent: -2.5em;
  margin: 0 0 0 2.5em;
}

/*.modList01*/
.modList01 {
  margin-bottom: 20px;
}

.modList01 > ul {
  line-height: 1.6;
}

.modList01 > li {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 13px;
  padding-right: 15px;
  overflow: auto;
}

@media only screen and (max-width: 992px) {
  .modList01 > li {
    margin-bottom: 0;
    padding-right: 0;
  }
}

.modList01 a {
  float: left;
  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;
}

.modList01 a:before {
  content: "";
  display: inline-block;
  background: url('../img/common/iconArrow02RightBlue.png') no-repeat;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modList01 .iconBlank:after {
  content: "";
  display: inline-block;
  background: url('../img/common/iconNewWindow.png') no-repeat;
  width: 14px;
  height: 14px;
  margin-left: 10px;
}

.modList01.modList01_large > li {
  font-size: 1.52rem;
}

.modList01.modList01_large .cat {
  display: inline-block;
  margin-left: 8px;
  line-height: 1;
  padding: 4px;
  font-weight: normal;
  font-size: 12px;
  font-size: 1.2rem;
  border: solid 1px #dcdcdc;
  background: #efefef;
}

.modList01_column2:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.modList01_column2 > li {
  width: 50%;
  float: left;
}

@media only screen and (max-width: 992px) {
  .modList01_smp_column1 > li {
    float: none;
    width: auto;
  }
}

footer .modList01 a {
  float: left;
  display: block;
  text-indent: -21px;
  margin-left: 21px;
}

footer .modList01 a:before {
  content: "";
  display: inline-block;
  background: url('../img/common/iconArrow02RightBlue.png') no-repeat;
  background-size: 13px;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  position: relative;
  top: 4px;
}

/*.modList02*/
@media only screen and (max-width: 992px) {
  .modList02 {
    padding: 15px 0;
  }
}

.modList02 > li {
  display: table;
  width: 100%;
  margin-bottom: 15px;
}

@media only screen and (max-width: 992px) {
  .modList02 > li {
    display: block;
  }
}

.modList02 > li a {
  font-size: 14px;
  font-size: 1.4rem;
  display: table-cell;
  vertical-align: middle;
  height: 60px;
  line-height: 1.5;
  padding: 0 30px 0 15px;
  border: solid 1px #e0e0e0;
  background: url('../img/common/iconArrowRightBlue.png') no-repeat calc( 100% - 15px) center;
  position: relative;
}

@media only screen and (max-width: 992px) {
  .modList02 > li a {
    display: block;
    height: auto;
    padding: 12px 30px 12px 15px;
  }
}

.modList02 > li a:hover {
  text-decoration: none;
  -webkit-transition: all  0.2s ease;
  transition: all  0.2s ease;
  background-position: calc( 100% - 12px) center;
  opacity: 1;
  border-color: #bdbdbd;
  -webkit-box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.modList02 > li a.icon {
  padding-left: 60px;
}

.modList02 > li a.icon:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 51px;
  height: 50px;
  top: 4px;
  left: 6px;
  margin-right: 5px;
  background-repeat: no-repeat;
}

.modList02 > li a.icon_pdf:before {
  background-image: url('../img/common/iconPdf.png');
}

@media only screen and (max-width: 992px) {
  .modList02 > li a.icon_pdf:before {
    background-size: 40px auto;
  }
}

.modList02_download > li a {
  background: url('../img/common/iconDownload.png') no-repeat calc( 100% - 15px) center;
}

.modList02_column2 {
  margin: 0 -2%;
}

.modList02_column2:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

@media only screen and (max-width: 992px) {
  .modList02_column2 {
    margin: 0;
  }
}

.modList02_column2 > li {
  width: 46%;
  margin-left: 2%;
  margin-right: 2%;
  float: left;
}

@media only screen and (max-width: 992px) {
  .modList02_smp_column1 > li {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/*.modListSupport*/
.modListSupport {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px 15px;
}
.modListSupport > li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
.modListSupport > li > a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}

.modListSupport a:hover {
  text-decoration: none;
}

.modListSupport .thumb {
  display: table;
  height: 80px;
  width: 100%;
  border-top: solid 1px #E6E6E6;
  border-left: solid 1px #E6E6E6;
  border-right: solid 1px #E6E6E6;
  background: #fafafa no-repeat center center;
}

.modListSupport .thumb.thumb_icon_faq {
  background-image: url('../img/common/iconFaq@2x.png');
  background-size: 38.5px;
}

.modListSupport .thumb.thumb_icon_guide1 {
  background-image: url('../img/common/iconGuide1@2x.png');
  background-size: 45px;
}

.modListSupport .thumb.thumb_icon_guide2 {
  background-image: url('../img/common/iconGuide2@2x.png');
  background-size: 38px;
}

.modListSupport .thumb.thumb_icon_info {
  background-image: url('../img/common/iconInfo2@2x.png');
  background-size: 42.5px;
}

.modListSupport .thumb.thumb_icon_word {
  background-image: url('../img/common/iconWord@2x.png');
  background-size: 44px;
}

.modListSupport .thumb.thumb_icon_rule {
  background-image: url('../img/common/iconRule@2x.png');
  background-size: 38px;
}

.modListSupport .thumb.thumb_icon_service {
  background-image: url('../img/common/iconService@2x.png');
  background-size: 49px;
}

.modListSupport .thumb.thumb_icon_seminar {
  background-image: url('../img/common/iconSeminar@2x.png');
  background-size: 41.5px;
}

.modListSupport .thumb.thumb_icon_support {
  background-image: url('../img/common/iconSupport@2x.png');
  background-size: 53.5px;
}

.modListSupport .title {
  display: grid;
  align-items: center;
  min-height: 70px;
  width: 100%;
  border: solid 1px #E6E6E6;
  line-height: 1.6;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 0 30px 0 14px;
  background: url('../img/common/iconArrowRightBlue@2x.png') no-repeat calc(100% - 10px) center;
  background-size: 9px;
}

@media only screen and (max-width: 992px) {
  .modListSupport .title {
    padding: 0 24px 0 10px;
  }
}

.modListSupport .title.blank {
  background: url('../img/common/iconNewWindow@2x.png') no-repeat calc(100% - 10px) center;
  background-size: 14px;
}

.habLink, .linkArea {
  overflow: hidden;
}

.habLink li, .linkArea li {
  font-size: 1.52rem;
  display: block;
  text-indent: -1.4em;
  margin-left: 1.4em;
  margin-bottom: 13px;
}

@media only screen and (max-width: 600px) {
  .habLink li, .linkArea li {
    width: 94%;
  }
}

.habLink a.allow, .linkArea a.allow {
  margin-right: 3px;
  text-decoration: none;
  color: #333;
}

@media only screen and (max-width: 992px) {
  .habLink a.allow, .linkArea a.allow {
    padding: 5px 0;
    background-position: left 12px;
  }
}

.habLink a.allow:before, .linkArea a.allow:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../img/common/iconArrow02RightBlue.png') no-repeat;
  position: relative;
  top: 2px;
  margin-right: 5px;
}

.habLink a.allow:hover, .linkArea a.allow:hover {
  text-decoration: underline;
  color: #00A1BB;
}

.linkArea li {
  float: left;
  width: 45%;
}

.linkArea li:nth-child(odd) {
  margin-right: 15px;
}

@media only screen and (max-width: 992px) {
  .linkArea li {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .linkArea li {
    width: 94%;
  }
}

/*
#overview
定義リスト（dl）
*/
/*.modDl01*/
.modDl01 {
  overflow: auto;
}

.modDl01 .modDl01Inner {
  margin-bottom: 5px;
}

@media only screen and (max-width: 992px) {
  .modDl01 .modDl01Inner {
    padding: 0;
  }
}

.modDl01 dt {
  font-weight: 500;
  margin-bottom: 5px;
}

.modDl01 .catWrap .cat:first-child {
  margin-left: 0;
}

.modDl01 .cat {
  display: inline-block;
  margin-left: 8px;
  line-height: 1;
  padding: 4px 6px;
  font-weight: normal;
  font-size: 12px;
  font-size: 1.2rem;
  border: solid 1px #dcdcdc;
  background: #efefef;
}

.modDl01 .cat.service {
  background: #00A1BB;
  color: #fff;
  font-weight: 400;
  border-color: #00A1BB;
  padding: 4px 6px;
}

.modDl01 .cat.main {
  background: #efefef;
  border-color: #dcdcdc;
  font-weight: 400;
  padding: 4px 6px;
}

.modDl01 dd,
.modDl01 .modDl01Item {
  font-size: 15.2px;
  font-size: 1.52rem;
  padding-bottom: 13px;
}

@media only screen and (max-width: 992px) {
  .modDl01 dd,
  .modDl01 .modDl01Item {
    padding-bottom: 23px;
  }
}

.modDl01 dd.border,
.modDl01 .modDl01Item.border {
  border-bottom: solid 1px #e0e0e0;
}

.modDl01 dd.mb,
.modDl01 .modDl01Item.mb {
  margin-bottom: 50px;
}

.modDl01 dd.q,
.modDl01 .modDl01Item.q {
  padding-left: 40px;
  position: relative;
}

.modDl01 dd.q:before,
.modDl01 .modDl01Item.q:before {
  content: "";
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  background-color: #EEE;
  background-image: url('../img/common/iconQ.png');
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  border-radius: 32px;
}

.modDl01 dd.q .cat,
.modDl01 .modDl01Item.q .cat {
  margin-left: 0;
}

.modDl01 dd.q p,
.modDl01 .modDl01Item.q p {
  padding-bottom: 0;
}

.modDl01 dd.q a,
.modDl01 .modDl01Item.q a {
  color: inherit;
  text-decoration: inherit;
}

.modDl01 dd.q a:hover,
.modDl01 .modDl01Item.q a:hover {
  text-decoration: underline;
}

.modDl01 .botttom {
  border-top: solid 1px #CCC;
  padding: 5px 0;
}

.modDl01 .botttom a {
  font-size: 12px;
  font-size: 1.2rem;
  float: right;
  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;
}

.modDl01 .botttom a:before {
  content: "";
  display: inline-block;
  background: url('../img/common/iconArrow02RightBlue.png') no-repeat;
  background-size: 13px;
  width: 16px;
  height: 16px;
  margin: 5px 0 0 3px;
}

.modDl01_type02 dt {
  float: left;
  width: 9em;
}

@media only screen and (max-width: 992px) {
  .modDl01_type02 dt {
    float: none;
    width: auto;
  }
}

.modDl01_type02 dd {
  margin-left: 9em;
}

@media only screen and (max-width: 992px) {
  .modDl01_type02 dd {
    margin-left: 0;
  }
}

.modDl01_type03 .cat:before {
  content: "";
  display: block;
}

#search .modDl01 dt {
  margin-top: 20px;
}

#search .modDl01 dd {
  margin-bottom: 30px;
}

/*.modDl02*/
.modDl02 dl {
  border: solid 1px #CCC;
  background: #FFF;
  padding: 30px;
}

@media only screen and (max-width: 992px) {
  .modDl02 dl {
    padding: 15px;
  }
}

.modDl02 dt {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 15px;
}

.modDl02 .title {
  display: inline-block;
  margin-bottom: 10px;
  color: #3B8DCD;
}

.modDl02 .title:before {
  content: "";
  display: inline-block;
  background: url('../img/common/iconInfo.png');
  width: 20px;
  height: 20px;
  position: relative;
  top: 3px;
  margin-right: 5px;
}

.modDl02 .caption {
  display: block;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
}

.modDl02 dd {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
}

.modDl02 dd:not(:last-child) {
  margin-bottom: 1rem;
}

#news .modDl02 {
  margin-top: 15px;
}

/*.modDlForm*/
.modDlForm {
  margin: 0 0 20px;
}

.modDlForm dt {
  float: left;
  clear: both;
  width: 16em;
  padding: 33px 0 20px 63px;
  position: relative;
}

@media only screen and (max-width: 992px) {
  .modDlForm dt {
    float: none;
    width: auto;
    padding: 33px 0 0 63px;
  }
}

.modDlForm dt.required:before, .modDlForm dt.any:before {
  position: absolute;
  left: 0;
  top: 30px;
  color: #FFF;
  font-size: 11px;
  font-size: 1.1rem;
  padding: 4px 10px;
}

.modDlForm dt.required:before {
  content: "必須";
  background: #E33E41;
}

.modDlForm dt.any:before {
  background: #999999;
  content: "任意";
}

.modDlForm dd {
  border-bottom: solid 1px #ccc;
  padding: 10px 0;
  padding-left: 17em;
}

@media only screen and (max-width: 992px) {
  .modDlForm dd {
    padding: 10px 0;
  }
}

.modDlForm dd .parts {
  padding: 10px 0;
}

.modDlForm dd .parts textarea,
.modDlForm dd .parts input[type="text"],
.modDlForm dd .parts input[type="email"] {
  width: 100%;
}

.modDlForm dd .parts.radio_inline > div, .modDlForm dd .parts.check_inline > div {
  display: inline-block;
}

.modDlForm dd .parts.name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.modDlForm dd .parts.name > div {
  width: 48.5%;
}

.modDlForm dd .parts.post, .modDlForm dd .parts.tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modDlForm dd .parts.post .hyphen, .modDlForm dd .parts.tel .hyphen {
  padding: 10px 10px 0 10px;
}

@media only screen and (max-width: 600px) {
  .modDlForm dd .parts.post .hyphen, .modDlForm dd .parts.tel .hyphen {
    padding: 10px 5px 0 5px;
  }
}

.modDlForm dd .parts.password input {
  width: 100%;
  max-width: 300px;
}

@media only screen and (max-width: 600px) {
  .modDlForm dd .parts.password input {
    max-width: none;
  }
}

.modDlForm dd .parts.password .text {
  padding: 10px 0;
}

.modDlForm dd .parts a {
  text-decoration: underline !important;
}

.modDlForm .validationError {
  color: #E33E41;
  padding: 5px 0;
}

.modDlForm .validationError:before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f071";
  padding-right: 5px;
}

/* other
------------------------------------------------------------*/
/*↓消さないこと*/
.modLoading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
}

.modLoading i {
  font-size: 24px;
  font-size: 2.4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.5em;
  margin-top: -0.5em;
}

/*↑消さないこと*/
.modColumnsLayout:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.modColumnsLayout > .body {
  width: 698px;
}

.modColumnsLayout > .side {
  width: 286px;
  margin: 0 0 0 auto;
}

@media only screen and (max-width: 992px) {
  .modColumnsLayout > .body, .modColumnsLayout > .side {
    float: none;
    width: auto;
    margin: 0;
  }
}

ul.modColumns {
  margin-left: -1.5%;
  margin-right: -1.5%;
  margin-top: -15px;
}

ul.modColumns:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

@media only screen and (max-width: 992px) {
  ul.modColumns {
    margin-top: -2%;
    margin-left: -2%;
    margin-right: -2%;
  }
}

ul.modColumns > li {
  float: left;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: 1.5%;
  margin-right: 1.5%;
}

@media only screen and (max-width: 992px) {
  ul.modColumns > li {
    margin-top: 2%;
    margin-left: 2%;
    margin-right: 2%;
  }
  ul.modColumns > li:last-child {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 992px) {
  ul.modColumns_margin_same_smp > li {
    margin: 2%;
  }
}

ul.modColumns_column2 > li {
  width: 47%;
}

ul.modColumns_column3 > li {
  width: 30%;
}

ul.modColumns_column4 > li {
  width: 22%;
}

@media only screen and (max-width: 992px) {
  ul.modColumns_column1_smp > li {
    width: 96%;
  }
}

@media only screen and (max-width: 992px) {
  ul.modColumns_column2_smp > li {
    width: 46%;
  }
}

@media only screen and (max-width: 992px) {
  ul.modColumns_column3_smp > li {
    width: 29%;
  }
}

@media only screen and (max-width: 992px) {
  ul.modColumns_column4_smp > li {
    width: 21%;
  }
}

.modBg_gray {
  background: #F5F5F5;
}

.modDl01 {
  margin-bottom: 15px;
}

@media only screen and (max-width: 992px) {
  .modColumnsLayout > .body .modDl01 {
    margin-bottom: 0;
  }
}

#detail blockquote {
  border-left: solid 4px #ddd;
  padding: 5px 0 5px 20px;
}

#detail blockquote ul {
  margin: 0 0 0 10px;
}

#detail pre {
  background: #f7f7f7;
  line-height: 1.4;
  padding: 10px 20px;
  white-space: normal;
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0 0 20px 0;
}

#detail pre code {
  white-space: normal;
  line-height: 1.4;
  padding: 0;
}

#detail code {
  background: #f7f7f7;
  padding: 3px 5px;
}

#detail div.box-info {
  background: #f1f8f8;
  padding: 10px 20px;
  font-size: 12px;
  font-size: 1.2rem;
  border: solid 1px #aad5d5;
  margin: 20px 0;
}

#detail div.box-info p {
  margin: 0px;
}

#detail div.box-error {
  background: #fceded;
  padding: 10px 20px;
  font-size: 12px;
  font-size: 1.2rem;
  border: solid 1px #f1b8b8;
  margin: 20px 0;
}

#detail div.box-error p {
  margin: 0px;
}

#detail div.box {
  background: #f9f9f9;
  padding: 10px 20px;
  font-size: 12px;
  font-size: 1.2rem;
  border: solid 1px #c9c9c9;
  margin: 20px 0;
}

#detail div.box p {
  margin: 0px;
}

#detail dl.caution {
  border: solid 1px #bdbdbd;
  margin: 20px 0;
  text-indent: initial;
}

#detail dl.caution dt {
  background: #EEEEEE;
  font-weight: 500;
  padding: 8px 15px;
  position: relative;
  padding-left: 50px;
  margin: 0;
}

#detail dl.caution dt:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  top: 8px;
  left: 10px;
  margin-right: 5px;
  background-repeat: no-repeat;
  background-image: url('../img/common/iconAlert.png');
}

#detail dl.caution dd {
  padding: 20px;
  overflow: hidden;
  margin: 0;
}

#detail dl.caution dd p {
  margin-top: 0;
}

label[for="keyword-field"] {
  cursor: text;
}

/*
#overview
CMS（cms）
CMS用
*/
.modCms {
  margin-bottom: 20px;
}

.modCms.modCmsImage .caption {
  text-align: center;
  color: #959595;
  font-size: 12px;
  font-size: 1.2rem;
  margin: 5px 0 0;
}

.modCms.modCmsImage a:hover {
  opacity: 0.8;
}

.modCms.modCmsYoutube {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 992px) {
  .modCms.modCmsYoutube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .modCms.modCmsYoutube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

.modCms.modCmsWysiwyg p {
  padding: 10px 0;
}

.modCms.modCmsWysiwyg strong {
  padding: 10px 0;
}

.modCms.modCmsWysiwyg ol, .modCms.modCmsWysiwyg ul {
  margin: 10px 0 10px 1.5em;
}

.modCms.modCmsWysiwyg ul li {
  list-style: disc;
}

.modCms.modCmsWysiwyg ol li {
  list-style: decimal;
}

.modCms.modCmsWysiwyg strong,
.modCms.modCmsWysiwyg th {
  font-weight: bold;
}

.modCms.modCmsWysiwyg .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.modCms.modCmsWysiwyg img.alignright {
  padding: 4px;
  margin: 0 0 2px 7px;
  display: inline;
}

.modCms.modCmsWysiwyg img.alignleft {
  padding: 4px;
  margin: 0 7px 2px 0;
  display: inline;
}

.modCms.modCmsWysiwyg .alignright {
  float: right;
}

.modCms.modCmsWysiwyg .alignleft {
  float: left;
}

/*# sourceMappingURL=maps/common.css.map */

/*.searchSideBar*/
.searchSideBar .inner {
  border: 0;
}

@media only screen and (max-width: 992px) {
  .searchSideBar .inner {
    padding: 0;
  }
}

.searchSideBar .search {
    padding: 12px;
    background: #fff;
    display: inline-block;
    width: 100%;
}

@media only screen and (max-width: 992px) {
    .searchSideBar .search {
        padding: 8px;
    }
}

.searchSideBar .search .keyword,
.searchSideBar .search .btn {
    float: left;
}

.searchSideBar .search input,
.searchSideBar .search button {
    height: 30px;
}

.searchSideBar .search input {
    border-radius: 0;
}

.searchSideBar .search .keyword {
    position: relative;
    width: 65%;
}

@media only screen and (max-width: 992px) {
    .searchSideBar .search .keyword {
        min-width: inherit;
        width: calc( 100% - 50px);
    }
}

.searchSideBar .search input {
    width: 100%;
    padding: 9px 18px;
}

.searchSideBar .search input:placeholder-shown {
    color: #CECECE;
}

.searchSideBar .search input::-webkit-input-placeholder {
    color: #CECECE;
}

.searchSideBar .search input:-moz-placeholder {
    color: #CECECE;
}

.searchSideBar .search input::-moz-placeholder {
    color: #CECECE;
}

.searchSideBar .search input:-ms-input-placeholder {
    color: #CECECE;
}

@media only screen and (max-width: 992px) {
    .searchSideBar .search input {
        min-width: inherit;
        width: 100%;
        padding: 9px;
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.searchSideBar .search .btn {
    width: 35%;
}

@media only screen and (max-width: 992px) {
    .searchSideBar .search .btn {
        min-width: inherit;
    }
}

.searchSideBar .search button {
    width: 100%;
    background-color: #00A1BB;
    border: none;
    padding: 9px;
    color: #FFF;
    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;
}

@media only screen and (max-width: 992px) {
    .searchSideBar .search button {
        min-width: inherit;
        width: 50px;
    }
}

.searchSideBar .search button:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    background: url('../img/common/iconSearch.png') no-repeat;
    background-size: 16px;
}

@media only screen and (max-width: 992px) {
    .searchSideBar .search button:before {
        margin-right: 0;
    }
}

@media only screen and (max-width: 992px) {
    .searchSideBar .search button span {
        display: none;
    }
}

.searchSideBar .foot {
  padding-top: 5px;
  padding-left: 10px;
  overflow: hidden;
}

@media only screen and (max-width: 992px) {
  .searchSideBar .foot {
    padding-top: 10px;
  }
}

.searchSideBar .foot .title {
  font-size: 15px;
  font-size: 1.5rem;
  float: left;
  padding-right: 5px;
}

@media only screen and (max-width: 992px) {
  .searchSideBar .foot .title {
    padding-bottom: 0;
  }
}

.searchSideBar .foot ul {
  float: left;
}

@media only screen and (max-width: 992px) {
  .searchSideBar .foot ul {
    width: auto;
  }
}

.searchSideBar .foot ul li {
  display: inline-block;
}

@media only screen and (max-width: 992px) {
  .searchSideBar .foot ul li {
    margin-right: 10px;
  }
}

.sp_visible {
  display: none;
}

@media only screen and (max-width: 992px) {
  .sp_visible {
    display: block;
  }
}
