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, sub, sup, 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;
}

button,
option,
select,
textarea,
input[type="button"],
input[type="submit"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="text"],
input[type="select"],
input[type="option"],
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: none;
    outline: 0;
    margin: 0;
    background: #fff;
}

/* デフォルトのradio、checkboxは非表示 */

input[type=radio],
input[type=checkbox] {
    display: none;
}

/* for firefox */

select {
    text-indent: 0.01px;
    text-overflow: '';
}

/* for ie10 ie11 ie系のプルダウンの矢印を消す ie9は非対応 */

select::-ms-expand {
    display: none;
}

/*
input[type="text"] textarea
input[type="●●●"] 適宜追加
*/

textarea,
input[type="tel"] {
    width: 250px;
    padding: 10px 15px;
    font-size: 12px;
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}

input[type="email"] {
    width: 250px;
    padding: 10px 15px;
    font-size: 12px;
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}

input[type="date"] {
    width: 250px;
    padding: 10px 15px;
    font-size: 12px;
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}

input[type="text"] {
    width: 500px;
    padding: 10px 15px;
    font-size: 12px;
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}

textarea {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 500px;
    height: 80px; /* お好みの高さに */
}

/* フォーカス時の色変更 */

textarea:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="text"]:focus {
    border: 1px solid #333;
}

/* ラジオボタン */

.form-radio input[type=radio]+label {
    position: relative;
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
    padding: 9px 28px 8px 28px;
    margin-right: 0px;
}

.form-radio input[type=radio]+label::before,
.form-radio input[type=radio]+label::after {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.form-radio input[type=radio]+label::before {
    width: 22px;
    height: 22px;
    margin-top: -12px;
    background: #FFF;
    border: 1px solid #ccc;
}

.form-radio input[type=radio]+label::after {
    left: 6px;
    width: 10px;
    height: 10px;
    margin-top: -6px;
    background: #f4f4f4;
}

.form-radio input[type=radio]:checked+label::after {
    background: #333;
}

/* チェックボックス */

.form-checkbox label {
    position: relative;
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
    padding: 6px 5px 8px 30px;
}

.form-checkbox label::before,
.form-checkbox label::after {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.form-checkbox label::before {
    width: 22px;
    height: 22px;
    margin-top: -12px;
    background: #FFF;
    border: 2px solid #ccc;
}

.form-checkbox input[type=checkbox]+label::after {
    width: 24px;
    height: 24px;
    top: 2px;
}

.form-checkbox input[type=checkbox]:checked+label::after {
    position: absolute;
    display: block;
    content: '';
    background: url(../img/icon_check.png) 0 0 no-repeat;
    background-size: 24px 24px;
    left: -1px;
    top: -1px;
}

.form-select {
    display: block;
    position: relative;
    width: 50%;
    height: 38px;
    font-size: 13px;
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
}

.form-select:after {
    position: absolute;
    display: block;
    content: '';
    width: 0;
    height: 0;
    /* ここで下向き矢印指定　今回はCSSで */
    border-top: 6px solid transparent;
    border-left: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #333;
    top: 50%;
    right: 10px;
    margin-top: -3px;
    pointer-events: none;/* クリック出来るよう */
}

.form-select select {
    width: 100%;
    height: 35px;
    font-size: 13px;
    padding: 0 10px;
    border: none;
    position: relative;
}

/* ie9対策 */

.form-select select:not(:target) {
    width: 120% \9;
}

button {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    width: 30%;
    height: 44px;
    display: block;
    position: relative;
    background: #FF9500;
    color: #fff;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 1px solid #FF9500;
    cursor: pointer;
}

button:before {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 3px;
    background: #ccc;
    bottom: -4px;
    left: 1%;
}

@media print,screen and (min-width: 950px) {
    button {
        -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
        -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
        -ms-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
        transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    }
    button:hover {
        color: #FF9500;
        background: #ffffe0;
    }
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

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

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

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

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

body {

}

.ggmap {
position: relative;
padding-bottom: 600px;
padding-top: 30px;
height: 0;
overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
right: 0;
left: 0;
width: 1000px;
height: 600px;
margin: auto;
}

html {
height: 100%;
/* ページに常にスクロールバーを表示 */
overflow-y: scroll;
}

body {
  background: #ffffff;
}

header{
  width: 100%;
  height: 50px;
  margin: auto;
  background-color: #d61528;
  display: table;
}

.top{
  width: 1000px;
  margin: auto;
}

.top_left{
  float: left;
  display: table-cell;
  vertical-align: middle;
  padding: 10px;
}

.top_right{
  float: right;
  display: table-cell;
  vertical-align: middle;
  padding: 12px;
}

#nav {
  width: 100%;
  font-size:0px;
  list-style: none;
  text-align: center;
  overflow: hidden;
  background-color: #d61528;
  height: 30px;
}

#nav li:hover {
  background-color: #d61528;
  opacity: 0.5;
}

#nav li {
  width: 250px;
  font-size:15px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  background-color: #d61528;
  height: 30px;
  line-height: 30px;
  border-left: 1px solid #eff3f6;
  border-right: 1px solid #eff3f6;
  -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all  0.5s ease;
}

#nav li + li {
  border-left: 0;
  border-right: 1px solid #eff3f6;
}

#nav li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  padding: 0px;
}

#main {
  background: #fff url(../img/bg05.jpg) no-repeat center center / auto auto;
  text-align: left;
  height: 650px;
}

.main_list{
  width: 1000px;
  margin: auto;
  padding-top: 20px;
}

#niji_main {
  background: #fff url(../img/nijifes/bg_nijifes.png) no-repeat center center / auto auto;
  text-align: left;
  height: 650px;
}

#toho20_main {
  background: #fff url(../img/toho20/bg_toho20.jpg) no-repeat center center / auto auto;
  text-align: left;
  height: 650px;
}

#toho21_main {
  background: #fff url(../img/toho21/bg_toho21.jpg) no-repeat center center / auto auto;
  text-align: left;
  height: 650px;
}

#niji_hako10_main {
  background: #fff url(../img/nijifes/bg_niji_hako10.png) no-repeat center center / auto auto;
  text-align: left;
  height: 650px;
}

#niji_hako11_main {
  background: #fff url(../img/nijifes/bg_niji_hako11.png) no-repeat center center / auto auto;
  text-align: left;
  height: 650px;
}

.event_main_list{
  width: 1000px;
  margin: auto;
  padding-top: 20px;
}

.title{
  padding-top: 30px;
  margin-bottom:30px;
}

#event{
  width: 100%;
  background-color: #d61528;
}

#event_list{
  width: 1000px;
  text-align: center;
  display: inline;
  margin-top: 20px;
}

#event_list ul{

}

#event_list li{
  width: 240px;
  height: 152px;
  display: inline-block;
  background-color: #d61528;
  margin-bottom: 20px;
  -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all  0.5s ease;
}

#event_list li:hover {
  opacity: 0.5;
}

#new{
  width: 100%;
  background-color: #520a11;
  padding-bottom: 20px;
}

#new_list{
  width: 1000px;
  text-align: center;
  display: inline;
}

#toho_gaiyou{
  width: 100%;
  background-color: #be84d4;
  padding-bottom: 30px;
}

#toho_gaiyou_l{
  text-align: center;
  display: inline;
}

#toho_gaiyou_l table{
  border-collapse: collapse;
  width: 1000px;
  margin: auto;
}

#toho_gaiyou_l table tr{
  border-bottom: solid 5px #be84d4;
}

#toho_gaiyou_l table tr:last-child{
  border-bottom: none;
}

#toho_gaiyou_l table th{
  position: relative;
  width: 30%;
  background-color: #773a8c;
  text-align: center;
}

#toho_gaiyou_l table th:after{
  display: block;
  content: "";
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #773a8c;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

#toho_gaiyou_l table td{
  width: 70%;
  text-align: center;
  background-color: #fff;
}


#toho_sanka{
  width: 100%;
  background-color: #773a8c;
  padding-bottom: 30px;
}

#toho_sanka_l{
  width: 1000px;
  text-align: center;
  display: inline;
}

#toho_sanka_l table{
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 1000px;
  margin: auto;
}

#toho_sanka_l table tr:last-child{
  border-bottom:solid 5px #773a8c;
}

#toho_sanka_l table th{
  text-align: center;
  padding: 7px 0;
  font-size: 20px;

  border-right:solid 5px #773a8c;
  border-left:solid 5px #773a8c;
}

#toho_sanka_l table th:nth-child(1){
  background-color:#dddddd;
}

#toho_sanka_l table th:nth-child(3){
  background-color:#f5b932;
  color: black;
}

#toho_sanka_l table tr:nth-child(2) td{
  font-size: 23px;
  line-height: 35px;
  font-weight: bold;
}

#toho_sanka_l table td{
  text-align: center;
  background-color:#ffffff;
  padding: 15px 0;
  border-right:solid 5px #773a8c;
  border-left:solid 5px #773a8c;
}

#toho_sanka_l table td a{
  background-color: #25b327;
  color: white;
  padding:5px 30px;
  border-radius: 30px;
  font-weight: bold;
}

#toho_sanka_l table .popular{
  width: 180px;
}

#toho_sanka_l table th.popular{
  position: relative;
}

#toho_sanka_l table th.popular span.no1{
  position: absolute;
  top: -10px;
  left:calc(50% - 60px);
  background: #f3dd2f;
  color: black;
  width: 120px;
  font-size: 14px;
  border-radius: 15px;
  line-height: 1;
  padding: 5px;
}

#toho_sanka_l table th.popular span.inner{
  position: absolute;
  color:white;
  background-color: #f34955;
  left: 0;
  bottom: 0;
  display: block;
  width: 327px;
  padding: 10px 0;
}


#niji_gaiyou{
  width: 100%;
  background-color: #f5aa6c;
  padding-bottom: 30px;
}

#niji_gaiyou_l{
  text-align: center;
  display: inline;
}

#niji_gaiyou_l table{
  border-collapse: collapse;
  width: 1000px;
  margin: auto;
}

#niji_gaiyou_l table tr{
  border-bottom: solid 5px #f5aa6c;
}

#niji_gaiyou_l table tr:last-child{
  border-bottom: none;
}

#niji_gaiyou_l table th{
  position: relative;
  width: 30%;
  background-color: #e72d5f;
  text-align: center;
}

#niji_gaiyou_l table th:after{
  display: block;
  content: "";
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #e72d5f;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

#niji_gaiyou_l table td{
  width: 70%;
  text-align: center;
  background-color: #fff;
}

#niji_sanka{
  width: 100%;
  background-color: #e72d5f;
  padding-bottom: 30px;
}

#niji_sanka_l{
  width: 1000px;
  text-align: center;
  display: inline;
}

#niji_sanka_l table{
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 1000px;
  margin: auto;
}

#niji_sanka_l table tr:last-child{
  border-bottom:solid 5px #e72d5f;
}

#niji_sanka_l table th{
  text-align: center;
  padding: 7px 0;
  font-size: 20px;

  border-right:solid 5px #e72d5f;
  border-left:solid 5px #e72d5f;
}

#niji_sanka_l table th:nth-child(1){
  background-color:#dddddd;
}

#niji_sanka_l table th:nth-child(3){
  background-color:#f5b932;
  color: black;
}

#niji_sanka_l table tr:nth-child(2) td{
  font-size: 23px;
  line-height: 35px;
  font-weight: bold;
}

#niji_sanka_l table td{
  text-align: center;
  background-color:#ffffff;
  padding: 15px 0;
  border-right:solid 5px #e72d5f;
  border-left:solid 5px #e72d5f;
}

#niji_sanka_l table td a{
  background-color: #25b327;
  color: white;
  padding:5px 30px;
  border-radius: 30px;
  font-weight: bold;
}

#niji_sanka_l table .popular{
  width: 180px;
}

#niji_sanka_l table th.popular{
  position: relative;
}

#niji_sanka_l table th.popular span.no1{
  position: absolute;
  top: -10px;
  left:calc(50% - 60px);
  background: #f3dd2f;
  color: black;
  width: 120px;
  font-size: 14px;
  border-radius: 15px;
  line-height: 1;
  padding: 5px;
}

#niji_sanka_l table th.popular span.inner{
  position: absolute;
  color:white;
  background-color: #2d87fa;
  left: 0;
  bottom: 0;
  display: block;
  width: 327px;
  padding: 10px 0;
}

#niji_other{
  width: 100%;
  background-color: #ffffff;
  text-align: center;
}

.other_li{
  width: 1000px;
  margin: auto;
  text-align: center;
}

.chui{
  vertical-align:top;
  padding-bottom: 50px;
  display: inline-block;
}

.topics{
  font-size: 15px;
  font-weight: 700;
  display: inline;
}

.topics dl {
  margin: auto;
  width: 950px;
  height: 170px;
  margin-top: 30px;
}

.topics dt {
  margin-left: 30px;
  margin-right: 30px;
  float: left;
}

.topics dd {
  margin-left: 250px;
}

.circle{
  font-size: 15px;
  font-weight: 700;
  display: inline;
}

.circle dl {
  margin: auto;
  width: 950px;
  margin-top: 30px;
}

.circle dt {
  margin-left: 30px;
  margin-right: 30px;
  float: left;
}

.circle dd {
  margin-left: 0px;
}

.circle a{
  text-decoration: none;
  color : #ffffff;
}

.circle a:hover{
  color : #fff000;
}

hr {
  width: 950px;
  margin: auto;
  border-width: 2px 0px 0px 0px; /* 太さ1px */
  border-style: dashed; /* 線種を破線に */
  border-color: #fff;   /* 線色を灰色に */
  height: 1px;         /* 高さ(※古いIE用) */
}

#itaku{
  background: #fff url(../img/bg_itaku.jpg) no-repeat center center / auto auto;
  height: 558px;
}

.itaku_main{
  width: 1000px;
  margin: auto;
  padding-top: 60px;
}

.itaku_main li{
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 10px;
  -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all  0.5s ease;
}

.itaku_main li:hover {
  opacity: 0.5;
}

.yaji{
  font-size:0;
  position: relative;
  bottom: 31px;
  margin: 0px auto -31px auto;
  text-align: center;
  scroll-behavior: smooth;
}

footer{
  width: 100%;
  font-size:0px;
  list-style: none;
  overflow: hidden;
  background-color: #520a11;
  height: 250px;
  margin-top:0px;
  margin-bottom:0px;
}

#footer_tit{
  width: 1000px;
  padding: 30px;
  margin: 0 auto;
}

.footer_corp{
  width: 350px;
  text-align: left;
  float: left;
}

.footer_nav{
  width: 200px;
  text-align: left;
  float: left;
}

.footer_nav li {
  font-size:13px;
  color: #fff;
  line-height:30px;
  position: relative;
}

#itemlist{
  width: 230px;
  float: left;
  display: table-cell;
  display: inline-block;
}

#item{
  width: 770px;
  float: right;
  display: table-cell;
}

#item ul{
  margin-right:-30px;
  text-align: center;
}

#item li{
  width: 200px;
  margin: 30px 30px 30px 30px;
  text-align: center;
  display: inline-block;
  position: relative;
}

#event_form{
  width: 100%;
}

.form_niji{
  width: 1000px;
  margin: auto;
  padding-top: 30px;
  margin-bottom: 50px;
  background-color: #fbe0a5;
}

.form_toho21{
  width: 1000px;
  margin: auto;
  padding-top: 30px;
  margin-bottom: 50px;
  background-color: #7bcbe1;
}

.form_toho{
  width: 1000px;
  margin: auto;
  padding-top: 30px;
  margin-bottom: 50px;
  background-color: #7bcbe1;
}

.form_toho21 img{
  width: 1000px;
  text-align: center;
  margin: auto;
  padding-top: 30px;
}

.form-circle{
  margin: 30px;
  margin-left: 150px;
}

.bunsyo{
  padding: 30px;
}

th{
  font-size: 13px;
  font-weight: normal;
  text-align: left;
  display: table-cell;
  vertical-align: middle;
  width: 180px;
  line-height: 80px;
}

td{
  font-size: 13px;
  font-weight: normal;
  display: table-cell;
  vertical-align: middle;
  width: 580px;
}

.red{
  font-size: 10px;
  color: #ffffff;
  padding: 3px;
  background-color: #FF9500;
}

h1{
  font-size: 15px;
  color: #ffffff;
  font-family: "Meiryo";
  font-weight:normal;
  text-align: left;
  margin-top: 10px;
  line-height: 28px;
}

h2{
  font-size: 30px;
  color: #fff000;
  font-weight:bold;
  font-family: 'Righteous', cursive;
  text-align: left;
}

h3{
  font-size: 12px;
  color: #000000;
  font-family: "Meiryo";
  font-weight:normal;
  text-align: left;
  margin-top: 10px;
  line-height: 28px;
}

h4{
  font-size: 28px;
  color: #ffffff;
  font-weight:bold;
  font-family: 'Righteous', cursive;
  text-align: center;
}

h5{
  font-size: 17px;
  color: #000000;
  font-family: "Meiryo";
  font-weight:normal;
  text-align: center;
  margin-top: 10px;
  line-height: 28px;
}

h6{
  font-size: 35px;
  color: #ffffff;
  font-weight:bold;
  font-family: 'Righteous', cursive;
  text-align: left;
}

#list_tab{
  width: 1000px;
  margin:auto;
  text-align: center;
}

#list_tab table{
  width: 1000px;
  margin:auto;
}

#list_tab table tr{
  height: 80px;
  background-color: #000;
}

#list_tab table tr.rei{
  background-color: #ff5151;
}
#list_tab table tr.mari{
  background-color: #ffb351;
}
#list_tab table tr.remi{
  background-color: #8651ff;
}
#list_tab table tr.flan{
  background-color: #d451ff;
}
#list_tab table tr.sak{
  background-color: #5193ff;
}
#list_tab table tr.pac{
  background-color: #ff51b3;
}

#list_tab table th{
  border-bottom: solid 5px #45afca;
  border-right: solid 5px #45afca;
  text-align: center;
  width: 150px;
  font-size: 25px;
  color: #fff;
  font-weight:bold;
  font-family: 'Righteous', cursive;
}

#list_tab table td{
  border-bottom: solid 5px #45afca;
  border-right: solid 5px #45afca;
  background-color: #fff;
  text-align: center;
  width: 400px;
  font-size: 20px;
  color: #000;
  font-weight:bold;
  font-family: 'Righteous', cursive;
}

#privacy{
  width: 1000px;
  margin: auto;
  padding-top: 0px;
}

.large{
  width: 1000px;
  margin: auto;
  margin-bottom: 50px;
  font-family: "Meiryo";
  font-size: 16px;
}

.large h1 {
  position: relative;/*相対位置*/
  padding: 1.5em 1.5em 1.5em 2.5em;/*アイコン分のスペース*/
  line-height: 2.4;/*行高*/
  font-size: 20px;
  color: #ff6a6a;/*文字色*/
  border-top: dotted 1px gray;
  border-bottom: dotted 1px gray;
  background: #fffff4;
}

.large h1:before {
  font-family: "Meiryo";
  content: "\f138";/*アイコンのユニコード*/
  position: absolute;/*絶対位置*/
  font-size: 20px;
  left: 1.25em;/*アイコンの位置*/
  top: 1.5em;/*アイコンの位置*/
  color: #ff6a6a; /*アイコン色*/
}

.large h2{
  text-align: center;
}

.large p{
  font-size: 20px;
  color: #000000;
  font-family: "Meiryo";
  font-weight:normal;
  text-align: left;
  margin-top: 10px;
  line-height: 28px;
}

.large li{
  margin: 20px 20px 20px 40px;
}
