@charset "UTF-8";
/* ------------------------------------------------------------
style reset
------------------------------------------------------------ */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

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

img {
  vertical-align: top;
}

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

li {
  list-style-type: none;
}

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

blockquote,
q {
  quotes: none;
}

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

/* ------------------------------------------------------------
初期設定
------------------------------------------------------------ */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

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

/* ------------------------------------------------------------
iframe
------------------------------------------------------------ */
.google-map iframe {
  vertical-align: bottom;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ------------------------------------------------------------
印刷設定
------------------------------------------------------------ */
@media print {
  body {
    zoom: 100%;
    overflow-y: visible;
    overflow-x: visible;
  }
  a {
    text-decoration: none !important;
  }
  .header-wrap {
    position: static !important;
  }
  #pagetop {
    display: none !important;
  }
}

/* ------------------------------------------------------------
表示有無設定（ブラウザサイズ）
------------------------------------------------------------ */
@media print, screen and (min-width: 992px) {
  .min992 {
    display: none;
  }
}

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

@media print, screen and (min-width: 768px) {
  .min768 {
    display: none;
  }
}

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

/* ------------------------------------------------------------
html・body
------------------------------------------------------------ */
html,
body {
  height: 100%;
}

body {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
}

@media print, screen and (min-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.8;
  }
}

body {
  font-family: 'Roboto',
 'Noto Sans JP',
 "Helvetica Neue",
 Arial,
 "Hiragino Kaku Gothic ProN",
 "Hiragino Sans",
 メイリオ,
 Meiryo,
 sans-serif;
}

/* ------------------------------------------------------------
レイアウト・タグ設定
------------------------------------------------------------ */
.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.ta-right {
  text-align: right;
}

.ta-left {
  text-align: left;
}

.ta-center {
  text-align: center;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.fc-red {
  color: #C60000;
}

.disc li {
  list-style-type: disc;
  margin-left: 2em;
  padding-left: 2px;
}

.decimal li {
  list-style-type: decimal;
  margin-left: 2em;
  padding-left: 2px;
}

/* ------------------------------------------------------------
リンク設定
------------------------------------------------------------ */
a {
  color: #333333;
  text-decoration: none;
}

a:hover {
  color: #000000;
  text-decoration: none;
}

a:hover img {
  opacity: 0.6;
}

/* ------------------------------------------------------------
form
------------------------------------------------------------ */
form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

form label input {
  margin-right: 2px;
}

form input[type="text"],
form textarea {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #ccc;
}

form textarea {
  min-height: 100px;
}

form button[type="submit"],
form button[type="button"] {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333333;
  padding: 10px 50px;
  background: #ffffff;
  border: 1px solid #09296b;
}

form button[type="submit"]:hover,
form button[type="button"]:hover {
  color: #ffffff;
  background: #09296b;
}

form button[type="button"].return {
  color: #333333;
  background: #f5f5f5;
  border: 2px solid #f5f5f5;
}

form button[type="button"].return:hover {
  color: #ffffff;
  background: #666666;
  border: 2px solid #666666;
}

form ::-webkit-input-placeholder {
  color: #cccccc;
}

form ::-moz-placeholder {
  color: #cccccc;
}

form :-ms-input-placeholder {
  color: #cccccc;
}

/* ------------------------------------------------------------
表 - table
------------------------------------------------------------ */
.table-row {
  width: 100%;
  border-bottom: 1px solid #cccccc;
}

.table-row tr th,
.table-row tr td {
  display: block;
  width: 100%;
  padding: 10px;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
}

.table-row tr th {
  background: #f5f5f5;
}

.table-row tr td {
  background: #ffffff;
}

@media print, screen and (min-width: 768px) {
  .table-row {
    border-bottom: none;
  }
  .table-row tr th,
  .table-row tr td {
    display: table-cell;
    vertical-align: top;
    padding: 10px 15px;
    border: 1px solid #cccccc;
  }
  .table-row tr th {
    width: 25%;
  }
  .table-row tr td {
    width: 75%;
  }
}

/* ------------------------------------------------------------
ページトップへ戻る
------------------------------------------------------------ */
#pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 999;
}

#pagetop img:hover {
  -webkit-animation: rotates 0.7s linear infinite;
          animation: rotates 0.7s linear infinite;
}

@-webkit-keyframes rotates {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes rotates {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* ------------------------------------------------------------
bootstrap
------------------------------------------------------------ */
/* bootstrap container base + 30px */
.container {
  width: 100%;
}

@media print, screen and (min-width: 1110px) {
  .container {
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 15px;
  }
}

/* ie scroll bar位置調整 */
@-ms-viewport {
  width: auto;
}

/* ------------------------------------------------------------
ofi
------------------------------------------------------------ */
.photo-ofi {
  height: 0;
  display: block;
  background-color: #EFEFEF;
  overflow: hidden;
  position: relative;
  padding-bottom: 75%;
  /* 高さを指定（ボックスの横幅を基準） */
}

.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  font-family: 'object-fit: scale-down;';
  position: absolute;
  left: 0;
  top: 0;
}

/* ------------------------------------------------------------
header
------------------------------------------------------------ */
header .header-wrap {
  position: fixed;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #cccccc;
  z-index: 100;
}

header .header-wrap .header-top-wrap {
  position: relative;
}

header .header-wrap .header-top-wrap .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  padding: 0 65px;
}

header .header-wrap .header-top-wrap .logo img {
  max-height: 44px;
}

header .header-wrap .header-top-wrap .right-box {
  display: none;
}

header .header-wrap .header-top-wrap .sp-tel-icon {
  position: absolute;
  top: 10px;
  right: 10px;
}

header .header-wrap .header-top-wrap .sp-tel-icon span,
header .header-wrap .header-top-wrap .sp-tel-icon a {
  display: block;
}

header .header-wrap .header-top-wrap .sp-tel-icon span i,
header .header-wrap .header-top-wrap .sp-tel-icon a i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  width: 40px;
  height: 40px;
  background: #ff6600;
  border-radius: 50%;
}

header .header-wrap .header-top-wrap .sp-tel-icon .number {
  display: none;
}

@media print, screen and (min-width: 992px) {
  header .header-wrap .header-top-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 10px;
  }
  header .header-wrap .header-top-wrap .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 360px;
    height: 60px;
    padding: 0 15px;
  }
  header .header-wrap .header-top-wrap .logo img {
    max-height: none;
  }
  header .header-wrap .header-top-wrap .right-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  header .header-wrap .header-top-wrap .right-box .tel-fax-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    padding: 0 15px 0 0;
  }
  header .header-wrap .header-top-wrap .right-box .tel-fax-box .tel-box,
  header .header-wrap .header-top-wrap .right-box .tel-fax-box .fax-box {
    font-size: 15px;
    line-height: 1.4;
  }
  header .header-wrap .header-top-wrap .right-box .tel-fax-box .tel-box i,
  header .header-wrap .header-top-wrap .right-box .tel-fax-box .fax-box i {
    color: #002c98;
    margin-right: .3em;
  }
  header .header-wrap .header-top-wrap .right-box .link-box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .header-wrap .header-top-wrap .right-box .link-box ul li:nth-child(1) {
    background: #6989d9;
  }
  header .header-wrap .header-top-wrap .right-box .link-box ul li:nth-child(2) {
    background: #395fbc;
  }
  header .header-wrap .header-top-wrap .right-box .link-box ul li:nth-child(3) {
    background: #002c98;
  }
  header .header-wrap .header-top-wrap .right-box .link-box ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
    color: #ffffff;
    width: 130px;
    height: 60px;
  }
  header .header-wrap .header-top-wrap .right-box .link-box ul li a i {
    margin-right: .3em;
  }
  header .header-wrap .header-top-wrap .right-box .jtb-box {
    min-width: 91px;
  }
  header .header-wrap .header-top-wrap .right-box .jtb-box a img {
    height: 60px;
  }
  header .header-wrap .header-top-wrap .sp-tel-icon {
    display: none;
  }
}

@media screen and (min-width: 1260px) {
  header .header-wrap .header-top-wrap .logo {
    width: 460px;
    height: 80px;
    padding: 0 15px;
  }
  header .header-wrap .header-top-wrap .right-box .tel-fax-box {
    height: 80px;
    padding: 0 15px;
  }
  header .header-wrap .header-top-wrap .right-box .tel-fax-box .tel-box,
  header .header-wrap .header-top-wrap .right-box .tel-fax-box .fax-box {
    font-size: 20px;
  }
  header .header-wrap .header-top-wrap .right-box .link-box ul li a {
    font-size: 16px;
    width: 150px;
    height: 80px;
  }
  header .header-wrap .header-top-wrap .right-box .jtb-box {
    min-width: 122px;
  }
  header .header-wrap .header-top-wrap .right-box .jtb-box a img {
    width: 122px;
    height: 80px;
  }
}

@media screen and (min-width: 1660px) {
  header .header-wrap .header-top-wrap .logo {
    width: 652px;
    height: 101px;
  }
  header .header-wrap .header-top-wrap .right-box .tel-fax-box {
    height: 101px;
  }
  header .header-wrap .header-top-wrap .right-box .tel-fax-box .tel-box,
  header .header-wrap .header-top-wrap .right-box .tel-fax-box .fax-box {
    font-size: 27px;
  }
  header .header-wrap .header-top-wrap .right-box .link-box ul li a {
    font-size: 20px;
    width: 200px;
    height: 101px;
  }
  header .header-wrap .header-top-wrap .right-box .jtb-box {
    min-width: 154px;
  }
  header .header-wrap .header-top-wrap .right-box .jtb-box a img {
    width: 154px;
    height: 101px;
  }
}

@media print {
  header .header-wrap .header-top-wrap .right-box .link-box {
    display: none;
  }
}

/* ------------------------------------------------------------
footer
------------------------------------------------------------ */
footer .footer-wrap {
  font-size: 15px;
  text-align: center;
  padding: 30px 0;
  background: #d9ebf6;
}

footer .footer-wrap .address {
  margin: 20px 0;
}

footer .footer-wrap .footer-nav-list {
  display: none;
}

footer .footer-wrap .copyright {
  text-align: center;
  margin-top: 40px;
}

@media print, screen and (min-width: 992px) {
  footer .footer-wrap {
    text-align: left;
  }
  footer .footer-wrap .address {
    margin: 20px 0;
  }
  footer .footer-wrap .footer-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  footer .footer-wrap .footer-nav-list .box:last-child {
    margin-left: 40px;
  }
  footer .footer-wrap .copyright {
    text-align: right;
    margin-top: 0;
  }
}

/* ------------------------------------------------------------
トップページ
------------------------------------------------------------ */
.main-img-wrap {
  padding: 60px 15px 15px;
  background: url(../images/index/main-img-bg.png) no-repeat center center/cover;
}

@media screen and (min-width: 992px) {
  .main-img-wrap {
    padding-top: 130px;
  }
}

@media screen and (min-width: 1260px) {
  .main-img-wrap {
    padding-top: 150px;
  }
}

@media screen and (min-width: 1660px) {
  .main-img-wrap {
    padding-top: 171px;
  }
}

.main-img-wrap .main-img-box {
  padding-top: 20px;
}

.main-img-wrap .main-img-box .img {
  text-align: center;
}

.main-img-wrap .main-img-box .twitter-box {
}

@media print, screen and (max-width: 991px) {
  .main-img-box {
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
  }
}

@media print, screen and (min-width: 992px) {
  .main-img-wrap .main-img-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-img-wrap .main-img-box .img {
    width: 55%;
  }
  .main-img-wrap .main-img-box .twitter-box {
    width: 45%;
  }
}

@media print, screen and (min-width: 1220px) {
  .main-img-wrap .main-img-box {
    width: 1220px;
    margin: 0 auto;
  }
}

.index-info-wrap {
  padding: 60px 0 50px;
  background: url(../images/index/index-bg.png) no-repeat bottom center/cover;
}

.index-info-wrap .title {
  text-align: center;
  margin-bottom: 30px;
}

.index-info-wrap .title .jp {
  font-size: 25px;
}

.index-info-wrap .title .en {
  font-size: 14px;
  color: #013399;
  letter-spacing: .1em;
}

.index-info-wrap .info-box .category-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.index-info-wrap .info-box .category-box ul li {
  width: calc(100% / 4);
}

.index-info-wrap .info-box .category-box ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 80px;
}

.index-info-wrap .info-box .category-box ul li a .box {
  text-align: center;
}

.index-info-wrap .info-box .category-box ul li a .box .txt {
  font-size: 15px;
  color: #ffffff;
  line-height: 1;
  margin-top: 10px;
}

.index-info-wrap .info-box .category-box ul li:nth-child(1) {
  background: #3693be;
}

.index-info-wrap .info-box .category-box ul li:nth-child(2) {
  background: #2c9f24;
}

.index-info-wrap .info-box .category-box ul li:nth-child(3) {
  background: #d65353;
}

.index-info-wrap .info-box .category-box ul li:nth-child(4) {
  background: #e7bc11;
}

@media print, screen and (min-width: 768px) {
  .index-info-wrap .info-box .category-box ul li a {
    height: 104px;
  }
  .index-info-wrap .info-box .category-box ul li a .box .txt {
    font-size: 22px;
    font-weight: 700;
  }
}

.index-info-wrap .info-box .contents-box {
  overflow: scroll;
  height: 1000px;
  padding: 40px 30px 25px;
  background: #ffffff;
  border: 4px solid #3693be;
}

.index-info-wrap .info-box .contents-box ul li {
  width: 100%;
  margin-bottom: 15px;
}

.index-info-wrap .info-box .contents-box ul li .pc-new-icon {
  display: none;
}

.index-info-wrap .info-box .contents-box ul li .txt-box {
  width: 100%;
  padding: 0 0 15px 0;
  border-bottom: 1px solid #cccccc;
}

.index-info-wrap .info-box .contents-box ul li .txt-box .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 70px;
}

.index-info-wrap .info-box .contents-box ul li .txt-box .date span {
  color: #ff2121;
  padding: 0 0 0 15px;
}

.index-info-wrap .info-box .contents-box ul li .txt-box .category {
  font-size: 14px;
  line-height: 1;
  width: 100%;
  height: 28px;
}

.index-info-wrap .info-box .contents-box ul li .txt-box .category .category-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  width: 100%;
  height: 100%;
  background: #2c9f24;
}

.index-info-wrap .info-box .contents-box ul li .txt-box .category .category-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  width: 100%;
  height: 100%;
  background: #d65353;
}

.index-info-wrap .info-box .contents-box ul li .txt-box .category .category-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  width: 100%;
  height: 100%;
  background: #e7bc11;
}

.index-info-wrap .info-box .contents-box ul li .txt-box .txt {
  margin: 1em 0;
}

.index-info-wrap .info-box .contents-box ul li .txt-box .link {
  width: 80px;
  height: 28px;
  margin: 0 auto;
}

.index-info-wrap .info-box .contents-box ul li .txt-box .link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  width: 100%;
  height: 100%;
  background: #09296b;
}

@media print, screen and (min-width: 768px) {
  .index-info-wrap .info-box .contents-box ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .index-info-wrap .info-box .contents-box ul li .pc-new-icon {
    display: block;
    color: #ff2121;
    width: 60px;
    padding: 0 0 15px 0;
  }
  .index-info-wrap .info-box .contents-box ul li .txt-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .index-info-wrap .info-box .contents-box ul li .txt-box .date {
    margin-right: 20px;
  }
  .index-info-wrap .info-box .contents-box ul li .txt-box .date span {
    display: none;
  }
  .index-info-wrap .info-box .contents-box ul li .txt-box .category {
    width: 100px;
    margin-right: 50px;
  }
  .index-info-wrap .info-box .contents-box ul li .txt-box .txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0;
  }
  .index-info-wrap .info-box .contents-box ul li .txt-box .link {
    margin-left: 40px;
  }
}

.index-txt-wrap {
  padding: 55px 0;
}

/* ------------------------------------------------------------
コンテンツ
------------------------------------------------------------ */
.contents-wrap {
  margin-bottom: 90px;
  padding-top: 60px;
}

@media screen and (min-width: 992px) {
  .contents-wrap {
    padding-top: 130px;
  }
}

@media screen and (min-width: 1260px) {
  .contents-wrap {
    padding-top: 150px;
  }
}

@media screen and (min-width: 1660px) {
  .contents-wrap {
    padding-top: 171px;
  }
}

.cont-box {
  margin-bottom: 60px;
}

@media screen and (min-width: 992px) {
  .cont-box {
    margin-bottom: 90px;
  }
}

.cont-box:last-child {
  margin-bottom: 0;
}

.cont-title {
  background: url(../images/common/cont-title-bg.jpg) no-repeat center center/cover;
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
  padding: 60px 5%;
  text-shadow: 0 0 10px #ffffff;
}

.cont-title h2 {
  font-weight: 700;
}

.cont-title .en {
  font-size: 14px;
  letter-spacing: .1em;
}

@media print, screen and (min-width: 992px) {
  .cont-title {
    font-size: 40px;
    text-align: left;
    margin-bottom: 60px;
    padding: 120px 5%;
  }
}

.cont-subtitle-1 {
  font-size: 18px;
  margin-bottom: 20px;
  padding: .5em 1em;
  border-top: 5px solid #0b4199;
  border-bottom: 2px solid #0b4199;
}

@media print, screen and (min-width: 992px) {
  .cont-subtitle-1 {
    font-size: 24px;
  }
}

.paging {
  text-align: center;
  margin-top: 20px;
}

@media print, screen and (min-width: 768px) {
  .paging {
    margin-top: 40px;
  }
}

div.paging span.current,
div.paging span.paging-text {
  margin: 0px 2px;
  color: #333333;
  border: 1px solid #333333;
  display: inline;
  zoom: 1;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
}

div.paging span.paging-text a {
  padding: 3px 8px;
  display: block;
}

div.paging span.current {
  background: #333333;
  border: 1px solid #333333;
  color: #fff;
  display: inline;
  zoom: 1;
  padding: 3px 8px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

div.paging span.paging-text a:hover {
  background: #333333;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* ------------------------------------------------------------
お知らせ
------------------------------------------------------------ */
.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

@media screen and (min-width: 992px) {
  .anchor {
    padding-top: 170px;
    margin-top: -170px;
  }
}

@media screen and (min-width: 1260px) {
  .anchor {
    padding-top: 190px;
    margin-top: -190px;
  }
}

@media screen and (min-width: 1660px) {
  .anchor {
    padding-top: 210px;
    margin-top: -210px;
  }
}

.news-info-wrap .info-box .category-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-info-wrap .info-box .category-box ul li {
  width: calc(100% / 4);
}

.news-info-wrap .info-box .category-box ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 80px;
}

.news-info-wrap .info-box .category-box ul li a .box {
  text-align: center;
}

.news-info-wrap .info-box .category-box ul li a .box .txt {
  font-size: 15px;
  color: #ffffff;
  line-height: 1;
  margin-top: 10px;
}

.news-info-wrap .info-box .category-box ul li:nth-child(1) {
  background: #3693be;
}

.news-info-wrap .info-box .category-box ul li:nth-child(2) {
  background: #2c9f24;
}

.news-info-wrap .info-box .category-box ul li:nth-child(3) {
  background: #d65353;
}

.news-info-wrap .info-box .category-box ul li:nth-child(4) {
  background: #e7bc11;
}

@media print, screen and (min-width: 768px) {
  .news-info-wrap .info-box .category-box ul li a {
    height: 104px;
  }
  .news-info-wrap .info-box .category-box ul li a .box .txt {
    font-size: 22px;
    font-weight: 700;
  }
}

.news-info-wrap .info-box .contents-box {
  padding: 40px 30px 25px;
  background: #ffffff;
  border: 4px solid #3693be;
}

.news-info-wrap .info-box .contents-box ul li {
  width: 100%;
  margin-bottom: 15px;
}

.news-info-wrap .info-box .contents-box ul li .pc-new-icon {
  display: none;
}

.news-info-wrap .info-box .contents-box ul li .txt-box {
  width: 100%;
  padding: 0 0 15px 0;
  border-bottom: 1px solid #cccccc;
}

.news-info-wrap .info-box .contents-box ul li .txt-box .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 70px;
}

.news-info-wrap .info-box .contents-box ul li .txt-box .date span {
  color: #ff2121;
  padding: 0 0 0 15px;
}

.news-info-wrap .info-box .contents-box ul li .txt-box .category {
  font-size: 14px;
  line-height: 1;
  width: 100%;
  height: 28px;
}

.news-info-wrap .info-box .contents-box ul li .txt-box .category .category-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  width: 100%;
  height: 100%;
  background: #2c9f24;
}

.news-info-wrap .info-box .contents-box ul li .txt-box .category .category-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  width: 100%;
  height: 100%;
  background: #d65353;
}

.news-info-wrap .info-box .contents-box ul li .txt-box .category .category-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  width: 100%;
  height: 100%;
  background: #e7bc11;
}

.news-info-wrap .info-box .contents-box ul li .txt-box .txt {
  margin: 1em 0;
}

.news-info-wrap .info-box .contents-box ul li .txt-box .link {
  width: 80px;
  height: 28px;
  margin: 0 auto;
}

.news-info-wrap .info-box .contents-box ul li .txt-box .link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  width: 100%;
  height: 100%;
  background: #09296b;
}

@media print, screen and (min-width: 768px) {
  .news-info-wrap .info-box .contents-box ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .news-info-wrap .info-box .contents-box ul li .pc-new-icon {
    display: block;
    color: #ff2121;
    width: 60px;
    padding: 0 0 15px 0;
  }
  .news-info-wrap .info-box .contents-box ul li .txt-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .news-info-wrap .info-box .contents-box ul li .txt-box .date {
    margin-right: 20px;
  }
  .news-info-wrap .info-box .contents-box ul li .txt-box .date span {
    display: none;
  }
  .news-info-wrap .info-box .contents-box ul li .txt-box .category {
    width: 100px;
    margin-right: 50px;
  }
  .news-info-wrap .info-box .contents-box ul li .txt-box .txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0;
  }
  .news-info-wrap .info-box .contents-box ul li .txt-box .link {
    margin-left: 40px;
  }
}

.detail-box {
  padding: 30px 15px;
  background: #fafafa;
}

@media print, screen and (min-width: 768px) {
  .detail-box {
    padding: 30px 40px 50px;
  }
}

.detail-box .detail-date-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  padding-bottom: 5px;
  border-bottom: 2px solid #0b4199;
}

.detail-box .detail-date-title .date {
  width: 100px;
  margin-right: 40px;
}

.detail-box .detail-date-title .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.detail-box .detail-img-txt {
  margin-bottom: 40px;
}

.detail-box .detail-img-txt .img {
  text-align: center;
}

.detail-box .detail-img-txt .html-txt-1 {
  margin-top: 1em;
}

@media print, screen and (min-width: 768px) {
  .detail-box .detail-img-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .detail-box .detail-img-txt .img {
    width: 320px;
    margin-right: 20px;
  }
  .detail-box .detail-img-txt .html-txt-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
}

.detail-box .detail-word {
  font-size: 16px;
  margin-bottom: 40px;
  padding-bottom: 5px;
  border-bottom: 2px solid #0b4199;
}

.detail-box .img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px 40px;
}

.detail-box .img-list li {
  width: calc(100% / 2 - 10px);
  margin: 0 5px 10px;
}

@media print, screen and (min-width: 768px) {
  .detail-box .img-list li {
    width: calc(100% / 4 - 10px);
  }
}

.detail-box .html-txt-2 {
  margin-bottom: 40px;
}

.detail-box .file-link-list li {
  margin: 0 0 5px 0;
}

.detail-box .file-link-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 15px;
  background: #ffffff;
  border: 1px solid #0b4199;
}

.detail-box .file-link-list li a i {
  margin-right: .3em;
}

.detail-box .file-link-list li a:hover {
  background: #d9ebf6;
}

.detail-box .file-link-list li a .pdf-color {
  color: #b30b00;
}

.detail-box .file-link-list li a .excel-color {
  color: #117840;
}

.detail-box .file-link-list li a .word-color {
  color: #174fb0;
}

@media print, screen and (min-width: 768px) {
  .detail-box .file-link-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -5px;
  }
  .detail-box .file-link-list li {
    width: calc(100% / 3 - 10px);
    margin: 0 5px;
  }
}

.detail-return-btn {
  text-align: center;
  margin-top: 20px;
}

@media print, screen and (min-width: 768px) {
  .detail-return-btn {
    margin-top: 40px;
  }
}

.detail-return-btn a {
  font-size: 16px;
  padding: 10px 45px;
  border: 1px solid #0b4199;
}

.detail-return-btn a:hover {
  color: #ffffff;
  background: #0b4199;
}

/* ------------------------------------------------------------
大会スケジュール
------------------------------------------------------------ */
.schedule-box,
.result-box {
  padding: 30px 15px;
  background: #fafafa;
}

@media print, screen and (min-width: 768px) {
  .schedule-box,
  .result-box {
    padding: 30px 40px 50px;
  }
}

.schedule-box .title,
.result-box .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 40px;
  padding-bottom: 5px;
  border-bottom: 2px solid #0b4199;
}

@media print, screen and (min-width: 768px) {
  .schedule-box .title,
  .result-box .title {
    font-size: 20px;
  }
}

.schedule-box .schedule-img-txt,
.result-box .schedule-img-txt {
  margin-bottom: 40px;
}

.schedule-box .schedule-img-txt .img,
.result-box .schedule-img-txt .img {
  text-align: center;
}

.schedule-box .schedule-img-txt .html-txt-1,
.result-box .schedule-img-txt .html-txt-1 {
  margin-top: 1em;
}

@media print, screen and (min-width: 768px) {
  .schedule-box .schedule-img-txt,
  .result-box .schedule-img-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .schedule-box .schedule-img-txt .img,
  .result-box .schedule-img-txt .img {
    width: 320px;
    margin-right: 20px;
  }
  .schedule-box .schedule-img-txt .html-txt-1,
  .result-box .schedule-img-txt .html-txt-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
}

.schedule-box .img-list,
.result-box .img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px 40px;
}

.schedule-box .img-list li,
.result-box .img-list li {
  width: calc(100% / 2 - 10px);
  margin: 0 5px 10px;
}

@media print, screen and (min-width: 768px) {
  .schedule-box .img-list li,
  .result-box .img-list li {
    width: calc(100% / 4 - 10px);
  }
}

.schedule-box .html-txt-2,
.result-box .html-txt-2 {
  margin-bottom: 40px;
}

.schedule-box .html-txt-3,
.result-box .html-txt-3 {
  margin-bottom: 40px;
}

.schedule-box .file-link-list li,
.result-box .file-link-list li {
  margin: 0 0 5px 0;
}

.schedule-box .file-link-list li a,
.result-box .file-link-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 15px;
  background: #ffffff;
  border: 1px solid #0b4199;
}

.schedule-box .file-link-list li a i,
.result-box .file-link-list li a i {
  margin-right: .3em;
}

.schedule-box .file-link-list li a:hover,
.result-box .file-link-list li a:hover {
  background: #d9ebf6;
}

.schedule-box .file-link-list li a .pdf-color,
.result-box .file-link-list li a .pdf-color {
  color: #b30b00;
}

.schedule-box .file-link-list li a .excel-color,
.result-box .file-link-list li a .excel-color {
  color: #117840;
}

.schedule-box .file-link-list li a .word-color,
.result-box .file-link-list li a .word-color {
  color: #174fb0;
}

@media print, screen and (min-width: 768px) {
  .schedule-box .file-link-list,
  .result-box .file-link-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -5px;
  }
  .schedule-box .file-link-list li,
  .result-box .file-link-list li {
    width: calc(100% / 3 - 10px);
    margin: 0 5px;
  }
}

/* ------------------------------------------------------------
動画・写真
------------------------------------------------------------ */
.archive-category-select-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px 10px;
}

.archive-category-select-box li {
  width: calc(100% / 2 - 10px);
  margin: 0 5px;
}

.archive-category-select-box li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  padding: 5px 15px;
  background: #ffffff;
  border: 1px solid #0b4199;
}

.archive-category-select-box li a i {
  margin-right: .3em;
}

.archive-category-select-box li a.current, .archive-category-select-box li a:hover {
  color: #ffffff;
  background: #0b4199;
}

@media print, screen and (min-width: 768px) {
  .archive-category-select-box li a {
    font-size: 20px;
  }
}

.archive-box {
  padding: 30px 15px;
  background: #fafafa;
}

@media print, screen and (min-width: 768px) {
  .archive-box {
    padding: 30px 40px 50px;
  }
}

.archive-box .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 40px;
  padding-bottom: 5px;
  border-bottom: 2px solid #0b4199;
}

@media print, screen and (min-width: 768px) {
  .archive-box .title {
    font-size: 20px;
  }
}

.archive-box .video-box {
  text-align: center;
  padding: 0 15px;
}

.archive-box .video-box .ezm_htmlarea {
  text-align: left;
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .archive-box .video-box {
    padding: 0 45px;
  }
}

@media print, screen and (min-width: 992px) {
  .archive-box .video-box {
    padding: 0 60px;
  }
  .archive-box .video-box .ezm_htmlarea {
    text-align: center;
    margin-top: 8px;
  }
}

.archive-box .img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
}

.archive-box .img-list li {
  width: calc(100% / 2 - 10px);
  margin: 0 5px 20px;
}

.archive-box .img-list li .txt {
  font-size: 14px;
  line-height: 1.4;
  padding: 5px 5px 0;
}

@media print, screen and (min-width: 768px) {
  .archive-box .img-list li {
    width: calc(100% / 4 - 10px);
  }
}

/* ------------------------------------------------------------
FAQ
------------------------------------------------------------ */
.faq-box {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #0b4199;
}

.faq-box:last-child {
  margin-bottom: 0;
}

.faq-box .faq-q,
.faq-box .faq-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faq-box .faq-q .icon,
.faq-box .faq-a .icon {
  width: 45px;
}

.faq-box .faq-q .txt,
.faq-box .faq-a .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 4px;
}

@media print, screen and (min-width: 768px) {
  .faq-box .faq-q .txt,
  .faq-box .faq-a .txt {
    padding-top: 3px;
  }
}

.faq-box .faq-q .txt a,
.faq-box .faq-a .txt a {
  color: #0b4199;
  text-decoration: underline;
}

.faq-box .faq-q {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #cccccc;
}

.faq-box .faq-q .txt {
  font-size: 16px;
  font-weight: 700;
}

/* ------------------------------------------------------------
各種手続き
------------------------------------------------------------ */
.procedure-table th,
.procedure-table td {
  vertical-align: top;
  padding: 15px;
  border: 1px solid #cccccc;
}

.procedure-table th {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  width: 50px;
  background: #6989d9;
}

.procedure-table td .title {
  font-size: 15px;
  font-weight: 700;
}

.procedure-table td a {
  color: #09296b;
  text-decoration: underline;
}

@media print, screen and (min-width: 768px) {
  .procedure-table th,
  .procedure-table td {
    padding: 20px;
  }
  .procedure-table th .title,
  .procedure-table td .title {
    font-size: 16px;
  }
  .procedure-table th {
    font-size: 40px;
    width: 65px;
  }
}

.procedure-link-list {
  margin-top: 20px;
}

.procedure-link-list li {
  margin: 0 0 5px 0;
}

.procedure-link-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  padding: 10px 15px;
  background: #ffffff;
  border: 1px solid #09296b;
}

.procedure-link-list li a i {
  margin-right: .3em;
}

.procedure-link-list li a:hover {
  color: #ffffff;
  background: #09296b;
}

@media print, screen and (min-width: 768px) {
  .procedure-link-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 20px -5px 0;
  }
  .procedure-link-list li {
    width: calc(100% / 3 - 10px);
    margin: 0 5px;
  }
}

/* ------------------------------------------------------------
当連盟について
------------------------------------------------------------ */
.about-table-box {
  margin-top: 40px;
}

.about-table-box .title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #0b4199;
}

.about-table-box .title i {
  color: #0b4199;
}

.about-table-box table th,
.about-table-box table td {
  font-size: 14px;
}

/* ------------------------------------------------------------
お問い合わせフォーム
------------------------------------------------------------ */
.contact-title {
  text-align: center;
  padding: 60px 5%;
  background: url(../images/contact/title-bg.jpg) no-repeat center center/cover;
}

.contact-title h2 {
  display: inline-block;
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .1em;
  text-shadow: 0 0 6px #000000;
}

@media screen and (min-width: 992px) {
  .contact-title {
    padding: 120px 5%;
  }
  .contact-title h2 {
    font-size: 72px;
  }
}

.contact-txt-box {
  margin-bottom: 30px;
}

.contact-table th span {
  float: right;
}

.required {
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  color: #fff;
  line-height: 1;
  margin: 2px 4px 0;
  padding: 3px 6px 2px;
  background: #c3003a;
  border-radius: 3px;
}

.button-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px auto 0;
}

.button-box button[type="submit"],
.button-box button[type="button"] {
  margin: 0 5px;
}

/* ------------------------------------------------------------
個人情報保護方針
------------------------------------------------------------ */
.privacy-title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 30px auto;
}

@media print, screen and (min-width: 768px) {
  .privacy-title {
    font-size: 18px;
  }
}

.privacy-box {
  overflow: auto;
  font-size: 14px;
  height: 300px;
  padding: 30px 20px;
  background: #ffffff;
  border: 1px solid #cccccc;
}

.privacy-box .title {
  font-weight: bold;
  margin: 30px 0 15px;
  padding: 6px 10px 4px;
  background: #f5f5f5;
}

.privacy-box ul li {
  list-style-type: decimal;
  margin: 0 0 1em 2em;
}

.privacy-box ul li:last-child {
  margin: 0 0 0 2em;
}

@media print, screen and (min-width: 768px) {
  .privacy-box {
    padding: 30px;
  }
}

.privacy-box .name {
  text-align: right;
  margin-top: 1em;
  line-height: 1.4;
}

h3.titleH3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
}
.pdfBtn {
    width: calc(100% / 3 - 10px);
    margin: 0 5px 10px;
}
.pdfBtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  padding: 10px 15px;
  background: #ffffff;
  border: 1px solid #09296b;
}

.pdfBtn a:hover {
  color: #ffffff;
  background: #09296b;
}

.pdfBtn a i {
  margin-right: 0.3em;
  font-size: 16px;
}
@media print, screen and (max-width: 768px) {
  .pdfBtn {
      width: 100%;
      margin: 0 5px 10px;
  }
}


.kome {
  text-indent: -1em;
  margin-left: 1em;
}

.sp {
  display: none;
}
@media print, screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.mb10 {margin-bottom: 10px;}


.flexBox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flexBox .pdfBtn {
  margin: 0 5px;
  width: 400px;
}
@media print, screen and (max-width: 991px) {
.flexBox {
  flex-wrap: wrap;
}


  .flexBox .pdfBtn {
    margin: 0 0 5px;
    width: 100%;
  }
}



/*# sourceMappingURL=style.css.map */

