
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/*行の高さをフォントサイズと同じにしています*/
/*
body {
  line-height: 1;
}
*/

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*ulのマーカー（行頭記号）を表示しないようにしています*/
ul {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote, q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  text-decoration: underline;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  position: relative;
  display: block;
  height: 0px;
  border: 0;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select, textarea {
  vertical-align: middle;
  /*font-size: $g_font_size;*/
  line-height: 1.7;
}

input[type="text"],
input[type="password"],
textarea,
select {
  outline: none;
  font-family: inherit;
}

input[type="radio"] {
  vertical-align: -0.1em;
}

.wrap {
  /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .wrap {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

html {
  height: 100%;
  overflow-y: scroll;
  opacity: 1;
}

html.wf-active {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  opacity: 1;
}

a {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  color: #000;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

a:active, a:focus {
  color: #333333;
}

*:focus {
  outline: none;
}

.sub-title01 {
    font-size: 160%;
    font-weight: 700;
    margin: 50px 0 30px;
    padding: 8px 15px;
    border-top: 3px solid #1476c7;
    background: #f5f5f5;
    }
    
    .sub-title02 {
    border-bottom: 2px dotted #AAAAAA;
    padding: 5px 5px 5px 35px;
    position: relative;
    font-size: 140%;
    font-weight: 700;
    margin: 30px 0 20px;
    }
    
    .sub-title02:after {
    content: "";
    position: absolute;
    top: 20px;
    right: auto;
    bottom: auto;
    left: 5px;
    width: 20px;
    height: 10px;
    border-radius: 50%;
    background: url(/chouseikan/img/common/icon/arrow_icon.svg) left center no-repeat;
    background-size: 20px auto;
    }
    
    .sub-title03 {
    font-size: 120%;
    font-weight: 700;
    margin: 30px 0 15px;
    padding: 5px 10px;
    background: #f2f2f2;
    }
    
    .sub-title04 {
    font-size: 110%;
    font-weight: 700;
    margin: 15px 0;
    color: #199ff2;
    }

.blue {
color: #1476c7;
}

.green {
color: #5BB232;
}

.red {
color: #ED0C0C;
}

.underline {
text-decoration: underline;
}

.through {
text-decoration: line-through;
}





table td .sub-title01:first-child,
table td .sub-title02:first-child,
table td .sub-title03:first-child,
table td .sub-title04:first-child {
margin-top: 0;
}

table {
border: none;
border-collapse: collapse;
}

table th {
text-align: center;
}

table td {
border: none;
font-size: 100%;
padding: 5px;
}

table td a {
color: #1476c7;
}

table td a:hover {
text-decoration: underline;
}

.table-gray {
width: calc(100% - 2px);
border: 1px solid #d1d1d1;
border-collapse: collapse;
}

.table-gray td {
border: 1px solid #d1d1d1;
font-size: 100%;
padding: 5px;
}

.table-gray th {
border: 1px solid #d1d1d1;
font-size: 100%;
padding: 5px;
background: #f2f2f2;
}

.bg-gray {
background: #f2f2f2;
}

.bg-blue {
background: #f4f9fa;
}

.bg-red {
background: #faf4f6;
}

.bg-green {
background: #EEFAE8;
}

.table-list {
border-top: 1px solid #d1d1d1;
border-left: none;
border-right: none;
}

.table-list td {
border-bottom: 1px solid #d1d1d1;
font-size: 100%;
padding: 5px;
border-left: none;
border-right: none;
}

.table-none {
width: calc(100% - 2px);
border: none !important;
}

.table-none td {
border: none !important;
padding: 0 !important;
}

.table-imgl,
.table-imgr {
border: none;
width: 100%;
}

.table-imgl img,
.table-imgr img {
vertical-align: top;
}

.table-imgl > tbody > tr > td,
.table-imgr > tbody > tr > td {
border: none;
padding: 0;
vertical-align: top;
padding-bottom: 20px;
}

.table-imgl > tbody > tr > td img,
.table-imgr > tbody > tr > td img {
max-width: 480px;
height: auto;
}

.table-imgl img + p,
.table-imgr img + p {
margin-top: 5px;
font-size: 90%;
line-height: 1.4;
text-align: center;
}

.table-imgl > tbody > tr > td:first-child {
padding-right: 30px;
}

.table-imgl > tbody > tr > td:last-child {
width: 100%;
}

.table-imgl > tbody > tr > td:last-child p:first-child {
margin-top: 0px;
}

.table-imgr > tbody > tr > td:first-child {
width: 100%;
}

.table-imgr > tbody > tr > td:last-child {
padding-left: 30px;
}

.table-imgr > tbody > tr > td:first-child p:first-child {
margin-top: 0px;
}

.table-img2 {
table-layout: fixed;
border: none;
padding: 0;
}

.table-img2 td {
width: calc(100% / 2);
text-align: center;
border: none;
padding: 0;
padding-bottom: 20px;
}

.table-img2 td img {
display: block;
max-width: 96%;
margin: 0 auto;
height: auto !important;
}

.table-img2 td p {
margin: 5px auto 0px;
max-width: calc(100% - 4%);
text-align: center;
font-size: 90%;
line-height: 1.4;
}

.table-img3 {
table-layout: fixed;
border: none;
padding: 0;
}

.table-img3 td {
width: calc(100% / 3);
text-align: center;
vertical-align: top;
border: none;
padding: 0;
padding-bottom: 20px;
}

.table-img3 td img {
display: block;
max-width: 96%;
margin: 0 auto;
height: auto !important;
}

.table-img3 td p {
margin: 5px auto 0px;
max-width: calc(100% - 2%);
text-align: center;
font-size: 90%;
line-height: 1.4;
}

.table-scroll {
overflow-x: visible !important;
overflow-y: visible !important;
}

ul:not([class]) li {
padding-left: 25px;
margin: 5px 0;
background: url(/chouseikan/img/common/icon/arrow01r-blue.svg) no-repeat 5px 8px/12px;
line-height: 1.4;
}

ul:not([class]) li a {
text-decoration: underline;
color: #1476c7;
}

ul:not([class]) li a:hover {
text-decoration: none;
}

.pdf {
background: url(/chouseikan/img/common/icon/icon_pdf.png) no-repeat 0 3px/21px !important;
padding-left: 30px !important;
}

.doc {
background: url(/chouseikan/img/common/icon/icon_doc.png) no-repeat 0 3px/21px !important;
padding-left: 30px !important;
}

.xls {
background: url(/chouseikan/img/common/icon/icon_xls.png) no-repeat 0 3px/21px !important;
padding-left: 30px !important;
}

ol {
margin-top: 5px;
}

ol li {
margin-left: 30px;
margin-bottom: 5px;
}

ul.btnlist-01 {
width: 100%;
margin-top: 20px;
}

ul.btnlist-01 li {
width: 100%;
margin-bottom: 20px;
display: -webkit-box;
display: -webkit-flexbox;
display: -moz-flexbox;
display: -ms-flexbox;
display: -moz-flex;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}

ul.btnlist-01 li a {
width: 80%;
border: 1px solid #1476c7;
padding: 20px 30px 20px 10px;
display: -webkit-box;
display: -webkit-flexbox;
display: -moz-flexbox;
display: -ms-flexbox;
display: -moz-flex;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
background: #1476c7 url(/chouseikan/img/common/icon/arrow01r-white.svg) right 8px center no-repeat;
background-size: auto 10px;
color: #fff;
line-height: 1.2;
text-align: center;
}

ul.btnlist-01 li a:hover {
opacity: 1.0;
background: #fff url(/chouseikan/img/common/icon/arrow01r-blue.svg) right 8px center no-repeat;
background-size: auto 10px;
color: #1476c7;
}

ul.btnlist-02 {
width: 100%;
margin-top: 20px;
display: -webkit-box;
display: -webkit-flexbox;
display: -moz-flexbox;
display: -ms-flexbox;
display: -moz-flex;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: start;
    -ms-flex-pack: start;
        justify-content: flex-start;
-webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
}

ul.btnlist-02 li {
width: 49%;
margin-right: 2%;
margin-bottom: 20px;
}

ul.btnlist-02 li:nth-child(2n) {
margin-right: 0;
}

ul.btnlist-02 li a {
border: 1px solid #1476c7;
padding: 20px 30px 20px 10px;
display: -webkit-box;
display: -webkit-flexbox;
display: -moz-flexbox;
display: -ms-flexbox;
display: -moz-flex;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
background: #1476c7 url(/chouseikan/img/common/icon/arrow01r-white.svg) right 8px center no-repeat;
background-size: auto 10px;
color: #fff;
line-height: 1.2;
}

ul.btnlist-02 li a:hover {
opacity: 1.0;
background: #fff url(/chouseikan/img/common/icon/arrow01r-blue.svg) right 8px center no-repeat;
background-size: auto 10px;
color: #1476c7;
}

ul.btnlist-03 {
width: 100%;
margin-top: 20px;
display: -webkit-box;
display: -webkit-flexbox;
display: -moz-flexbox;
display: -ms-flexbox;
display: -moz-flex;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: start;
    -ms-flex-pack: start;
        justify-content: flex-start;
-webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
}

ul.btnlist-03 li {
width: 32%;
margin-right: 2%;
margin-bottom: 20px;
}

ul.btnlist-03 li:nth-child(3n) {
margin-right: 0;
}

ul.btnlist-03 li a {
border: 1px solid #1476c7;
padding: 20px 30px 20px 10px;
display: -webkit-box;
display: -webkit-flexbox;
display: -moz-flexbox;
display: -ms-flexbox;
display: -moz-flex;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
background: #1476c7 url(/chouseikan/img/common/icon/arrow01r-white.svg) right 8px center no-repeat;
background-size: auto 10px;
color: #fff;
line-height: 1.2;
}

ul.btnlist-03 li a:hover {
opacity: 1.0;
background: #fff url(/chouseikan/img/common/icon/arrow01r-blue.svg) right 8px center no-repeat;
background-size: auto 10px;
color: #1476c7;
}

ul.flex-list {
width: 100%;
margin-top: 20px;
display: -webkit-box;
display: -webkit-flexbox;
display: -moz-flexbox;
display: -ms-flexbox;
display: -moz-flex;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: start;
    -ms-flex-pack: start;
        justify-content: flex-start;
-webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
}

ul.flex-list li {
margin: 0 30px 5px 0;
display: inline-block;
padding-left: 25px;
background: url(/chouseikan/img/common/icon/arrow01r-blue.svg) no-repeat 5px 8px/12px;
}

ul.flex-list a {
color: #1476c7;
text-decoration: underline;
}

ul.flex-list a:hover {
text-decoration: none;
}

.column-02 {
display: -webkit-box;
display: -webkit-flexbox;
display: -moz-flexbox;
display: -ms-flexbox;
display: -moz-flex;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
-webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
margin: 15px 0;
}

.column-02 > li {
width: calc(50% - 10px);
margin-bottom: 25px;
}

.column-02 > li div.sub-title01:first-child,
.column-02 > li div.sub-title02:first-child,
.column-02 > li div.sub-title03:first-child,
.column-02 > li div.sub-title04:first-child {
margin-top: 0 !important;
}

.column-03 {
display: -webkit-box;
display: -webkit-flexbox;
display: -moz-flexbox;
display: -ms-flexbox;
display: -moz-flex;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: start;
    -ms-flex-pack: start;
        justify-content: flex-start;
-webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
margin: 15px 0;
}

.column-03 > li {
width: calc((100% - 40px) / 3);
margin-bottom: 10px;
margin-right: 20px;
}

.column-03 > li:nth-child(3n) {
margin-right: 0;
}

.column-03 li:nth-child(-n+3) div.sub-title01:first-child,
.column-03 li:nth-child(-n+3) div.sub-title02:first-child,
.column-03 li:nth-child(-n+3) div.sub-title03:first-child,
.column-03 li:nth-child(-n+3) div.sub-title04:first-child {
margin-top: 0;
}

.map-wrap {
margin: 30px 0;
padding: 0 50px;
display: -webkit-box;
display: -webkit-flexbox;
display: -moz-flexbox;
display: -ms-flexbox;
display: -moz-flex;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}

.map-wrap .map-list {
width: 600px;
display: -webkit-box;
display: -webkit-flexbox;
display: -moz-flexbox;
display: -ms-flexbox;
display: -moz-flex;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: start;
    -ms-flex-pack: start;
        justify-content: start;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}

.map-wrap .map-list li {
padding: 0 !important;
background: none !important;
width: 100%;
}

.map-wrap .map-list li a {
display: -webkit-box;
display: -webkit-flexbox;
display: -moz-flexbox;
display: -ms-flexbox;
display: -moz-flex;
display: flex;
-ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
-webkit-box-pack: start;
    -ms-flex-pack: start;
        justify-content: flex-start;
-webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
line-height: 30px;
padding: 10px 10px;
border-bottom: 1px dotted #d8d8d8;
}

.map-wrap .map-list li:first-child a {
border-top: 1px dotted #d8d8d8;
}

.map-wrap .map-list li a:hover {
background: #e3f4fc;
opacity: 1.0;
}

.map-wrap .map-list li a p {
display: inline-block;
border: solid 1px #1476c7;
background: #1476c7;
color: #fff;
border-radius: 50%;
width: 30px;
height: 30px;
line-height: 30px !important;
text-align: center;
margin-right: 15px;
}

.map-wrap .map-list .map-name {
width: calc(100% - 55px);
}
.form-box {
margin: 20px 0;
border-top: 1px solid #AAAAAA;
}

.form-box dl {
  margin: 0 !important;
  padding: 0 !important;
width: 100%;
display: -webkit-box;
display: -webkit-flexbox;
display: -moz-flexbox;
display: -ms-flexbox;
display: -moz-flex;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: start;
    -ms-flex-pack: start;
        justify-content: flex-start;
-webkit-box-align: stretch;
    -ms-flex-align: stretch;
        align-items: stretch;
border-bottom: 1px solid #AAAAAA;
}

.form-box dl dt {
width: calc(20% - 20px);
padding: 15px 10px;
background: #f2f2f2;
}

.form-box dl dd {
display: -webkit-box;
display: -webkit-flexbox;
display: -moz-flexbox;
display: -ms-flexbox;
display: -moz-flex;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: start;
    -ms-flex-pack: start;
        justify-content: flex-start;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
width: calc(75% - 20px);
padding: 10px;
}

.form-box dl dd .input-item,
.form-box dl dd .input-item-radio {
margin-right: 20px;
}

.form-box dl dd .input-item:last-child,
.form-box dl dd .input-item-redio:last-child {
margin-right: 0;
}

.form-box dl dd .input-text {
width: calc(100% - 5px - 2px);
border: 1px solid #AAAAAA;
padding: 5px;
border-radius: 4px;
-webkit-transition: all 0.3s ease 0s !important;
transition: all 0.3s ease 0s !important;
}

.form-box dl dd .input-text:focus {
background: #f4f9fa;
}

.form-box dl dd div {
width: 100%;
}

.form-box dl dd .comment {
background: #e3f4fc;
padding: 5px 10px;
color: #000;
font-weight: bold;
}

.form-box dl dd > div:first-child {
margin-top: 0;
}

.form-box dl dd .example {
color: #707070;
}

.form-box dl dd .input-name {
width: 250px !important;
}

.form-box dl dd .input-kana {
width: 250px !important;
}

.form-box dl dd .input-tel {
width: 250px !important;
}

.btn-box {
display: -webkit-box;
display: -webkit-flexbox;
display: -moz-flexbox;
display: -ms-flexbox;
display: -moz-flex;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
margin-top: 20px;
}

.btn-box .btn {
border: none;
background: #199ff2;
color: #fff;
padding: 20px 50px;
line-height: 1;
font-size: 140%;
cursor: pointer;
-webkit-transition: all 0.3s ease 0s !important;
transition: all 0.3s ease 0s !important;
}

.btn-box .btn:hover {
background: #1476c7;
}

.event-bnr{
  margin-top: -20px;
  margin-bottom: 20px;
}

iframe#inbody{
  padding: 10px;
  border: none !important;
}

.soudan-state {
  margin: 20px 0;
  border: 2px solid #f7f7f7;
  padding: 10px;
  border-radius: 10px;
}

.soudan-state .-img ul {
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.soudan-state .-img ul li {
  padding: 0 !important;
  margin: 0 !important;
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  background: none !important;
}

.soudan-state .-img ul li img {
  max-width: 100%;
}

.soudan-state .-title {
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px 0;
  font-size: 220%;
  font-weight: 600;
  padding-bottom: 20px;
  position: relative;
}

.soudan-state .-title:after {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: auto;
  content: "";
  width: 300px;
  height: 5px;
  background: #1476c7;
}

.soudan-state .-title:before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: -15px;
  left: auto;
  content: "";
  border-right: 10px solid transparent;
  border-top: 15px solid #1476c7;
  border-left: 10px solid transparent;
}

.soudan-state .-photo ul {
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.soudan-state .-photo ul li {
  padding: 0 !important;
  margin: 0 0 10px 0 !important;
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33%;
  background: none !important;
}
.ippan-notice {
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ippan-notice .-pamphlet {
  width: 40%;
}

.ippan-notice .-note {
  width: calc(55% - 48px);
  border: 4px solid #ededed;
  padding: 20px;
  border-radius: 5px;
}

.ippan-notice .-note .-writing .-title {
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #1476c7;
  padding: 10px;
  color: #fff;
  font-size: 160%;
  font-weight: 600;
  margin-bottom: 40px;
}

.ippan-notice .-note .-writing .-sub-title {
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 160%;
  font-weight: 600;
  margin-bottom: 20px;
}

.ippan-notice .-note .-writing .-day {
  margin-bottom: 20px;
}

.ippan-notice .-note .-writing .-day ul {
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ippan-notice .-note .-writing .-day ul li {
  padding: 10px 20px !important;
  margin: 0 10px !important;
  background: none !important;
  border: 1px solid #1476c7;
  font-size: 200%;
  font-weight: bold;
  color: #1476c7;
}

.ippan-notice .-note .-writing .-comment {
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.ippan-notice .-note .-btn {
  margin-top: 20px;
}

.ippan-notice .-note .-btn a {
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  width: calc(100% - 20px);
  line-height: 1.5;
  background: #f45f05;
  color: #fff;
  border-radius: 5px;
  font-size: 140%;
}
/*20241015 add*/
.photo-column2 {
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.photo-column2 .img {
  width: 49%;
  margin-bottom: 20px;
  text-align: center;
}
.photo-column2 .img img {
  max-width: 100%;
  vertical-align: bottom;
}
.photo-column2 .img p {
  padding: 5px 5px 0 5px;
  line-height: 1.2;
}

.photo-column3 {
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.photo-column3 .img {
  width: 32%;
  margin-bottom: 20px;
  text-align: center;
}
.photo-column3 .img img {
  max-width: 100%;
  vertical-align: bottom;
}
.photo-column3 .img p {
  padding: 5px 5px 0 5px;
  line-height: 1.2;
}

.event-box {
  margin: 40px 0;
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.event-box img {
  max-width: 100%;
}
.event-box .flyer {
  width: 32%;
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.event-box .read {
  width: 66%;
}

.exp-list {
  border-top: 1px solid #d1d1d1;
  margin: 20px 0;
}
.exp-list dl {
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.exp-list dl dt {
  width: calc(22% - 20px);
  background: #f2f2f2;
  padding: 10px 10px 10px 16px;
  border-bottom: 1px solid #d1d1d1;
}
.exp-list dl dd {
  width: calc(78% - 20px);
  padding: 10px;
  border-bottom: 1px solid #d1d1d1;
}
/*20241016 add*/
.captcha-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.captcha-box .captcha-img {
  border: 4px solid #8e8e8e;
  padding: 4px;
  margin-right: 10px;
}
.captcha-box .captcha-button {
  padding: 10px;
  background: #ff4200;
  color: #fff;
  border: none;
  border-radius: 4px;
  line-height: 1;
  cursor: pointer;
}
.captcha-box .input-captcha {
  width: 100%;
  border: 1px solid #aaa;
  padding: 5px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  margin-top: 10px;
}

.btn-wrap01 {
  width: 100%;
  margin-top: 0.75em;
  margin-bottom: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn-wrap01 button {
  width: 84%;
  border: 1px solid #1476c7;
  margin-bottom: 20px;
  padding: 20px 30px 20px 10px;
  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;
  background: #1476c7 url(../img/common/icon/arrow01r-white.svg) right 8px center no-repeat;
  background-size: auto 10px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  font-size: 100%;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  cursor: pointer;
}
.btn-wrap01 button:last-child {
  margin-bottom: 0;
}
.btn-wrap01 button:hover {
  opacity: 1;
  background: #fff url(../img/common/icon/arrow01r-blue.svg) right 8px center no-repeat;
  background-size: auto 10px;
  color: #1476c7;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.btn-wrap02 {
  width: 100%;
  margin-top: 0.75em;
  margin-bottom: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.btn-wrap02 button {
  width: 49%;
  border: 1px solid #1476c7;
  margin-right: 2%;
  margin-bottom: 20px;
  padding: 20px 30px 20px 10px;
  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;
  background: #1476c7 url(../img/common/icon/arrow01r-white.svg) right 8px center no-repeat;
  background-size: auto 10px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  font-size: 100%;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  cursor: pointer;
}
.btn-wrap02 button:nth-child(2n) {
  margin-right: 0;
}
.btn-wrap02 button:nth-last-child(2) {
  margin-bottom: 0;
}
.btn-wrap02 button:last-child {
  margin-bottom: 0;
}
.btn-wrap02 button:hover {
  opacity: 1;
  background: #fff url(../img/common/icon/arrow01r-blue.svg) right 8px center no-repeat;
  background-size: auto 10px;
  color: #1476c7;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.btn-wrap03 {
  width: 100%;
  margin-top: 0.75em;
  margin-bottom: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.btn-wrap03 button {
  width: 32%;
  border: 1px solid #1476c7;
  margin-right: 2%;
  margin-bottom: 20px;
  padding: 20px 30px 20px 10px;
  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;
  background: #1476c7 url(../img/common/icon/arrow01r-white.svg) right 8px center no-repeat;
  background-size: auto 10px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  font-size: 100%;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  cursor: pointer;
}
.btn-wrap03 button:nth-child(3n) {
  margin-right: 0;
}
.btn-wrap03 button:nth-last-child(3) {
  margin-bottom: 0;
}
.btn-wrap03 button:nth-last-child(2) {
  margin-bottom: 0;
}
.btn-wrap03 button:last-child {
  margin-bottom: 0;
}
.btn-wrap03 button:hover {
  opacity: 1;
  background: #fff url(../img/common/icon/arrow01r-blue.svg) right 8px center no-repeat;
  background-size: auto 10px;
  color: #1476c7;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}



