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

html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  background: #ffffff;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}

body, button, input, select, textarea {
  /* font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif; */
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

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

ul {
  list-style: none;
}

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

input, select, textarea {
  font-size: inherit;
  vertical-align: middle;
}

input[type=text],
input[type=email],
textarea {
  -webkit-appearance: none;
  width: 100%;
  padding: 6px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid #eeeeee;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #ffffff;
}

@media (max-width: 414px) {
  input[type=text],
  input[type=email],
  textarea {
    border-width: 6px;
  }
}
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  -webkit-box-shadow: 0 0 0 1px #aaaaaa inset;
  box-shadow: 0 0 0 1px #aaaaaa inset;
}

input[type=radio] {
  padding: 0;
  background: #cccccc;
  border: 1px solid #333333;
}

input[type=radio]:checked {
  background: #333333;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  /* for IE10 & 11 */
  input[type=radio] {
    background: none;
  }
  input[type=radio]:checked {
    background: none;
  }
}
@supports (-ms-ime-align: auto) {
  /* for Microsoft Edge */
  input[type=radio] {
    background: none;
  }
  input[type=radio]:checked {
    background: none;
  }
}
input[type=submit],
button {
  border-radius: 4px !important;
  border: 1px solid #ccc !important;
  font-size: inherit;
  border: 0 none;
  cursor: pointer;
}

textarea {
  height: 160px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-size: 16px auto;
  outline: none;
  text-overflow: ellipsis;
  cursor: pointer;
}

input[type=text], input[type=password], textarea, select {
  outline: none;
}

/* ----- 一般的なリンク ----- */
a,
a:visited {
  color: #003366;
  text-decoration: none;
  outline: none;
}

a:hover,
a:visited:hover {
  opacity: 0.7;
}

button:hover,
input[type=submit]:hover {
  opacity: 0.7;
}

a img {
  border: 0 none;
}

/* clearfixなど
----------------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}

/* ====================================================================
header
==================================================================== */
/* hd_idx-nav */
.hd_idx-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 980px;
  margin: 0 auto;
}
.hd_idx-nav li {
  text-align: center;
}

.hd_idx-nav > li {
  border-left: 1px solid #bbb;
  text-align: center;
}

.hd_idx-nav > li > a {
  display: block;
  margin: 5px 0;
  padding: 5px 33px;
  color: #6a6a6a;
  font-size: 1.1rem;
}

.hd_idx-nav > li > a:hover {
  background-color: #eef;
}

.idx-nav_sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 15px;
}

.idx-nav_sns ul li {
  width: 25%;
}

.idx-nav_sns ul li a {
  display: block;
  width: 100%;
  margin: 5px 0;
  padding: 5px 15px;
  color: #6a6a6a;
  font-size: 1.6rem;
}

.idx-nav_sns ul li a:hover {
  color: #fff;
}

.idx-nav_sns ul li.snsicon_fb a:hover {
  background-color: #3B5998 !important;
}

.idx-nav_sns ul li.snsicon_tw a:hover {
  background-color: #55acee !important;
  color: #6a6a6a;
}

.idx-nav_sns ul li.snsicon_yt a:hover {
  background-color: #e52d27 !important;
}

.idx-nav_sns ul li.snsicon_is a:hover {
  background-color: #eef !important;
  color: #6a6a6a;
}

/* hd_global-nav */
.hd_global-nav {
  position: relative;
  background-color: #09f;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.hd_global-nav .global-nav_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 980px;
  margin: 0 auto;
  padding-top: 20px;
}

.global-nav_01 {
  width: 760px;
}

.global-nav_02 {
  width: 200px;
}

.nav_01_logo-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav_01_logo-block .hd_logo {
  width: 193px;
}

.nav_01_logo-block .hd_infolink {
  width: calc(100% - 220px);
  text-align: right;
}

.nav_01_logo-block .hd_infolink li {
  margin-bottom: 10px;
  line-height: 1;
}

.nav_01_logo-block .hd_infolink li a {
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
}

.global-nav_02 .hd_btn_donation a {
  position: relative;
  display: block;
  border-radius: 4px;
  background-color: #f5a700;
  width: 100%;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  line-height: 66px;
}
.global-nav_02 .hd_btn_donation a i.fa.fa-angle-right {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

/* 
.searchbox {
  margin: 15px 0 0;
  border: 0 none;
  border-collapse: collapse;
  background: #58bdff;
  border-radius: 2px;
}

.searchbox form {
  margin: 0;
}

.searchbox input {
  border: 0 none;
  background: #95d5ff;
}

.searchbox input[type=text] {
  height: 35px;
  width: 161px !important;
}

.searchbox input:focus {
  background: #ffffff !important;
  border: 1px solid #0099ff;
  border-radius: 2px;
}
*/

/* gnavi_block */
.gnavi_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 980px;
  margin: 20px auto 0;
}

/* .g-search
----------------------------------------------- */
.g-search {
  width: calc(100% - 855px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.g-search_btn {
  display: flex;
  position: relative;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  cursor: pointer;
  list-style: none;
}
.g-search_btn::-webkit-details-marker {
  display: none;
}
.g-search_btn_inner {
  display: block;
  position: relative;
  padding: 0 0 0 20px;
  color: #fff;
  font-size: 1.4rem;
}
.g-search_btn_inner::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  line-height: 1;
  font-family: FontAwesome;
  content: "\f002";
}

details:not([open]) .g-search_close-btn {
  display: none;
}
details[open] .g-search_close-btn {
    position: absolute;
    top: calc(100% + 32px);
    right: 0px;
    z-index: 2;
}
.g-search_close-btn span {
    position: relative;
    width: 100%;
    border: none !important;
    color: transparent;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 7px 0;
}
.g-search_close-btn span::before, 
.g-search_close-btn span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 2px;
    background: #666;
}
.g-search_close-btn span::before {
    width: 18px;
    height: 2px;
}
.g-search_close-btn span::after {
    width: 2px;
    height: 18px;
}
.g-search_btn-close span:hover, .g-search_btn-close span:active, .g-search_btn-close:focus {
  opacity: 0.6;
}


.g-search_content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px 0;
  overflow-x: hidden;
  border-top: 1px solid #ccc;
  background: #f2f2f2;
  z-index: 1;
  -webkit-box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.2);
}
.g-search_inner {
  display: flex;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  animation: g-search-animation 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.g-search_inner .search_text {
  border-radius: 4px 0 0 4px;
  border: 0 none !important;
  background-color: #fff !important;
  background-image: none !important;
  width: calc(100% - 100px);
  font-size: 1.4rem;
  padding: 8px 6px;
}
.g-search_inner .search_text:focus {
  box-shadow: none;
}
.g-search_inner .search_submit {
  vertical-align: bottom;
  border-radius: 0 4px 4px 0 !important;
  border: none !important;
  background-color: #fff;
  padding: 0 20px;
}


@media only screen and (max-width: 767px) {
  .g-search_btn {
    padding: 25px 0 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
  }
  .g-search_btn::before {
    display: none;
  }
  .g-search_btn_inner {
    position: static;
    padding: 0;
  }
  .g-search_btn_inner::before, .g-search_btn_inner::after {
    position: absolute;
    top: 2px;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: 0 0 0 -8px;
  }
  .g-search_content {
    padding: 16px 22px;
    transform: translateY(10px);
  }
}



/*   */
.gronavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 855px;
  margin: 0 auto 0 0;
  padding: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  position: relative;
  z-index: 300;
}

@media all and (-ms-high-contrast: none) {
  .gronavi {
    top: 1px;
  } /* IE10 */
}
.li_mdroplist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #0173de;
  margin: 0 0 0 1px;
  cursor: pointer;
}

.mdrop_main {
  position: relative;
  display: block;
  padding: 8px 40px 8px 18px;
  color: #fff;
  font-size: 1.3rem;
}

.li_home {
  background-color: #fff !important;
  padding: 0px 13px;
}

.li_home a {
  padding: 0 !important;
}

.li_home a img {
  max-width: 21px !important;
}

.arrowdown {
  padding: 0 0 0 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
}

.gronavi_faq_li a {
  padding: 10px 40px 7px 18px;
  color: #fff;
  display: block;
}

ul#gronavi li .sub {
  position: absolute; /*--�����厖--*/
  top: 37px;
  top: 54px\9 ;
  left: 0;
  padding: 30px 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: left;
  /*--Bottom right rounded corner--*/
  -moz-border-radius-bottomright: 5px;
  -khtml-border-radius-bottomright: 5px;
  -webkit-border-bottom-right-radius: 5px;
  /*--Bottom left rounded corner--*/
  -moz-border-radius-bottomleft: 5px;
  -khtml-border-radius-bottomleft: 5px;
  -webkit-border-bottom-left-radius: 5px;
  display: none; /*--JS�I�t���ɕ\�������Ȃ��悤�ɂ��܂�--*/
  background: #fff;
  color: #333;
  border-top: 0 none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  -webkit-box-shadow: 0 8px 14px 2px rgba(0, 0, 0, 0.39);
          box-shadow: 0 8px 14px 2px rgba(0, 0, 0, 0.39);
  width: 980px;
  z-index: 100;
}

.sub {
  cursor: auto;
}
.sub a {
  color: #333;
}
.sub a:hover {
  opacity: 1;
}

.sub .mdrop_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.sub .mdrop_top_item {
  width: 220px;
  border: 1px solid #00aeef;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  overflow: hidden;
}
.sub .mdrop_top_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}
.sub .mdrop_top_item a:hover {
  background: #e4f5ff;
}
.sub .mdrop_top_item .top {
  padding-top: 26px;
  text-align: center;
}
.sub .mdrop_top_item .top .ttl {
  padding-bottom: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 63px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
}
.sub .mdrop_top_item .top .ttl span {
  color: #00aeef;
}
.sub .mdrop_top_item .bottom {
  height: 38px;
  background: #00aeef;
  color: #fff;
  font-size: 14px;
  line-height: 1.142;
  font-weight: 700;
  text-align: center;
  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;
}

.sub .mdrop_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sub .mdrop_row_left {
  width: 333px;
}
.sub .mdrop_row_left_btn1 li {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}
.sub .mdrop_row_left_btn1 li.type2 a {
  padding-top: 10px;
  padding-bottom: 10px;
}
.sub .mdrop_row_left_btn1 li:not(:first-child) {
  margin-top: 8px;
}
.sub .mdrop_row_left_btn1 li a {
  display: block;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 16px 12px 14px 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.sub .mdrop_row_left_btn1 li a:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url(/images/toppage/mdrop_arrow1.png) no-repeat;
  background-size: 100% auto;
}
.sub .mdrop_row_left_btn1 li a:hover {
  background: #e4f5ff;
  border-color: #00aeef;
}
.sub .mdrop_row_left_btn1 li a span {
  color: #00aeef;
}
.sub .mdrop_row_left_btn2 li:not(:first-child) {
  margin-top: 12px;
}
.sub .mdrop_row_left_btn2 li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sub .mdrop_row_left_btn2 li a:hover {
  background: #e4f5ff;
}
.sub .mdrop_row_left_btn2 li .ic {
  width: 30px;
}
.sub .mdrop_row_left_btn2 li .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  font-weight: 700;
  padding-left: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sub .mdrop_row_left_btn2 li .txt span {
  color: #00aeef;
}
.sub .mdrop_row_left_btn2 li .txt small {
  font-size: 12px;
}
.sub .mdrop_row_left_btn3 {
  border: 1px solid #00aeef;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  overflow: hidden;
}
.sub .mdrop_row_left_btn3 + .mdrop_row_left_btn3 {
  margin-top: 20px;
}
.sub .mdrop_row_left_btn3 a {
  display: block;
}
.sub .mdrop_row_left_btn3 a:hover {
  background: #e4f5ff;
}
.sub .mdrop_row_left_btn3 .top {
  text-align: center;
}
.sub .mdrop_row_left_btn3 .top .ttl {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
}
.sub .mdrop_row_left_btn3 .top .ttl span {
  color: #00aeef;
}
.sub .mdrop_row_left_btn3 .top .catch {
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 700;
}
.sub .mdrop_row_left_btn3 .bottom {
  height: 38px;
  background: #00aeef;
  color: #fff;
  font-size: 14px;
  line-height: 1.142;
  font-weight: 700;
  text-align: center;
  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;
}
.sub .mdrop_row_left hr.line {
  border: none;
  border-top: 1px solid #ddd;
  margin: 30px 0 30px;
}
.sub .mdrop_row_right {
  width: 577px;
  background: #eee;
  border-radius: 6px;
  padding: 16px 25px 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
.sub .mdrop_row_right.wide .mdrop_row_right_item {
  width: 100%;
}
.sub .mdrop_row_right.wide .mdrop_row_right_item:not(:nth-child(-n+2)) {
  margin-top: 0;
}
.sub .mdrop_row_right.wide .mdrop_row_right_item:not(:first-child) {
  margin-top: 25px;
}
.sub .mdrop_row_right_item {
  width: 251px;
}
.sub .mdrop_row_right_item:not(:nth-child(-n+2)) {
  margin-top: 15px;
}
.sub .mdrop_row_right_item .item_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sub .mdrop_row_right_item .item_ttl .ic {
  width: 24px;
}
.sub .mdrop_row_right_item .item_ttl .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  font-weight: 700;
  padding-left: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sub .mdrop_row_right_item .item_ttl .txt.ls10 {
  letter-spacing: 0.01em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.sub .mdrop_row_right_item .item_sttl {
  font-size: 15px;
}
.sub .mdrop_row_right_item .item_contents {
  margin-top: 10px;
  padding-left: 29px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sub .mdrop_row_right_item .item_link li {
  font-size: 15px;
  line-height: 1.333;
}
.sub .mdrop_row_right_item .item_link li:not(:first-child) {
  margin-top: 7px;
}
.sub .mdrop_row_right_item .item_link li a {
  display: inline-block;
  padding-left: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.sub .mdrop_row_right_item .item_link li a:hover {
  color: #00aeef;
}
.sub .mdrop_row_right_item .item_link li a:before {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 7px;
  height: 11px;
  background: url(/images/toppage/mdrop_arrow2.png) no-repeat;
  background-size: 100% auto;
}
.sub .mdrop_row_right_item .item_link li a small {
  font-size: 13px;
}

/* mdrop_about ユニセフについて */
.mdrop_about .mdrop_row_left hr.line {
  margin-bottom: 20px;
}
.mdrop_about .mdrop_row_right_item:nth-child(3) .item_link, .mdrop_about .mdrop_row_right_item:last-child .item_link {
  margin-top: 2px;
  padding-left: 13px;
}

/* mdrop_coop 寄付・協力方法 */
.mdrop_coop .mdrop_row_left_btn1:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mdrop_coop .mdrop_row_left_btn1:first-of-type li {
  width: 100%;
}
.mdrop_coop .mdrop_row_left_btn1:first-of-type li:not(:nth-child(-n+2)) {
  width: 107px;
}
.mdrop_coop .mdrop_row_right_item:nth-child(odd) {
  width: 268px;
}
.mdrop_coop .mdrop_row_right_item:nth-child(even) {
  width: 245px;
}
.mdrop_coop .mdrop_row_right_item:first-of-type .item_contents .item_sttl + .item_link {
  margin-bottom: 10px;
  padding-left: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* mdrop_support ご協力者様ナビ */
.mdrop_support .mdrop_row_left_btn3 .top {
  padding: 9px 0 7px;
}
.mdrop_support .mdrop_row_left_btn3 .top .ic {
  margin: 7px 0 9px;
}
.mdrop_support .mdrop_row_left_btn1 {
  margin-top: 20px;
}

/* mdrop_children 子どもの権利 */
.mdrop_children .mdrop_row_left_btn3 .top {
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mdrop_children .mdrop_row_left_btn3 .top .ttl {
  margin-top: 6px;
}

/* ====================================================================
Footer
==================================================================== */
.footer_siteinfo {
  clear: both;
  background: #09f;
  color: #fff;
  padding: 30px 0 25px;
}

.footer_area_hr {
  border-top: 1px solid #fff;
  border-left: 0 none;
  border-right: 0 none;
  border-bottom: 0 none;
  width: 980px;
  margin: 0 auto 30px;
}

.footer_linkarea {
  /*background:#0173de;*/
  background: #09f;
  color: #fff;
  padding: 0 0 30px 0;
}

.footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 980px;
  margin: 0 auto;
}

.footer_inner_l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 640px;
}

.footer_inner_r {
  width: 310px;
}

.footer_inner_l a {
  color: #fff;
}

.footer_inner_l_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
}

.footer_logo {
  margin: 0 30px 0 0;
}

.footer_tel * {
  display: inline-block;
  vertical-align: baseline;
}

.footer_tel {
  margin-top: 10px;
}

.footer_tel em {
  font-style: normal;
  font-size: 2.7rem;
}

.footer_tel .footer_tel_note {
  font-size: 0.92em;
}

.footer_link1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px 0;
  margin-top: auto;
}

.footer_link1 li a {
  display: block;
  padding: 10px 6px;
  background: #3caffc;
  border-radius: 5px;
  color: #fff;
  font-size: 1.3rem;
}

.footer_link1 li a:hover {
  color: #f90;
}

.footer_koujo_a {
  color: #F0E68C !important;
  text-decoration: underline;
}

.footer_koujo_a:hover {
  color: #ff9900 !important;
}

.footer_link2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer_link2 li {
  width: calc((100% - 10px) / 2);
  margin-bottom: 10px;
}

.footer_link2 img {
  margin: 7px 0;
}

.footer_link2 li a {
  display: block;
  background: #fff;
  width: 150px;
  text-align: center;
}

.footer_link2 li a:hover img {
  opacity: 0.7;
}

.footer_link_mm a {
  background: #fff;
  width: 310px !important;
}

.footer_link_mm a img {
  margin: 10px 0;
}

/* �����n���g�D�A���݃T�C�g */
.footer_link3 {
  float: left;
  width: 630px;
  margin: 0;
}

.footer_link3 h3 {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 1.5rem;
  font-weight: normal;
}

.footer_link3 h3 a {
  color: #fff;
}

.footer_link3 {
  list-style: none;
}

.region_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer_link3 ul.list_region {
  width: 25%;
}

.footer_link3 ul.list_region li {
  margin-bottom: 3px;
  font-size: 1.3rem;
}

.footer_link3 ul.list_region li:before {
  font-family: "FontAwesome";
  content: "\f0da";
}

.footer_link3 ul.list_region li a {
  color: #fff;
  padding-left: 8px;
}

.footer_link3 ul.list_region li a:hover {
  color: #f55c00;
}

.footer_link4 {
  float: right;
  margin: 0;
  padding: 0 0 0 40px;
  border-left: 1px solid #a4cdf9;
}

.footer_link4 h3 {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 1.5rem;
  font-weight: normal;
}

.footer_link4 a {
  color: #fff;
  font-size: 1.3rem;
  padding-left: 8px;
}

.footer_link4 a:hover {
  color: #f55c00;
}

.footer_link4 {
  list-style: none;
}

.footer_link4 li {
  margin-bottom: 3px;
  line-height: 1.4;
}

.footer_link4 li:before {
  font-family: "FontAwesome";
  content: "\f0da";
}

.underline {
  text-decoration: underline;
}

/* list_country */
.list_country {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 20px;
}

.list_country li {
  width: 50%;
  font-size: 1.6rem;
}

.list_country li a {
  color: #fff;
}

.list_country li a:hover {
  color: #f55c00;
}

.list_country li:before {
  font-family: FontAwesome;
  content: "\f0da";
  margin-right: 10px;
}

/* ====================================================================
コンテンツ
==================================================================== */
.wrapper {
  width: 980px;
  margin: 0 auto;
  padding: 20px 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.wrapper a:hover {
  color: #f55c00;
}

/* main_area */
.main_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: flex-top;
      -ms-flex-align: flex-top;
          align-items: flex-top;
}

.main_area_left {
  width: 390px;
}

.main_area_right {
  width: 560px;
}

.main-area_orange {
  position: relative;
  border-left: 7px solid #ff7100;
  margin-bottom: 20px;
}

.main-area_blue {
  position: relative;
  border-left: 7px solid #0099ff;
  margin-bottom: 9px;
}

.main-area_orange:before,
.main-area_blue:before {
  display: inline-block;
  content: "";
  position: absolute;
  bottom: -9px;
  left: -7px;
  background-color: #ddd;
  width: calc(100% + 7px);
  height: 1px;
}

.icon_arrow a {
  position: relative;
  display: block;
}

.icon_arrow a:before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 100vh;
  width: 36px;
  height: 36px;
}

.icon_arrow.main_monthly a:before {
  background-color: #ffe8db;
}

.icon_arrow.main_onetime a:before,
.main_kinkyu .icon_arrow a:before {
  background-color: #e0f3ff;
}

.main_kinkyu .main_drtv a:before {
  background: none;
}

.icon_arrow a:after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 11px;
  line-height: 36px;
}

.icon_arrow a:hover:after {
  right: 1px;
}

.icon_arrow.main_monthly a:after {
  background: url(/assets/images/idx_icon_arrow_orange.png) center center no-repeat;
  background-size: 100% auto;
}

.icon_arrow.main_onetime a:after,
.main_kinkyu .icon_arrow a:after {
  background: url(/assets/images/idx_icon_arrow_blue.png) center center no-repeat;
  background-size: 100% auto;
}

.icon_arrow.main_drtv a:after {
  background: url(/assets/images/idx_icon_arrow_gray.png) center center no-repeat;
  background-size: 100% auto;
}

.icon_arrow-s a:before {
  width: 27px;
  height: 27px;
}

.main_legacy .icon_arrow a:before {
  background-color: #def2dd;
}

.icon_arrow-s.main_sgift a:before,
.icon_arrow-s.main_friendonation a:before {
  background-color: #eeeeee;
}

.icon_arrow-s a:after {
  right: 7px;
  width: 12px;
  height: 8px;
  line-height: 27px;
}

.main_legacy .icon_arrow-s a:after {
  background: url(/assets/images/idx_icon_arrow-s_green.png) center center no-repeat;
  background-size: 100% auto;
}

.icon_arrow-s.main_sgift a:after,
.icon_arrow-s.main_friendonation a:after {
  background: url(/assets/images/idx_icon_arrow-s_blue.png) center center no-repeat;
  background-size: 100% auto;
}

.main_drtv {
  padding: 15px 0 20px;
}

.main_drtv a {
  padding-left: 13px;
  font-size: 15px;
  line-height: 1;
}

.main_kinkyu {
  position: relative;
}

.main_kinkyu:before {
  display: inline-block;
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  background-color: #ddd;
  width: calc(100% - 13px);
  height: 1px;
}

.main_kinkyu p {
  margin: 0;
}

.main_kinkyu .main_kinkyu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 330px;
  margin: 0 auto 0 17px;
  padding-bottom: 8px;
}

.main_kinkyu .main_kinkyu-list li {
  position: relative;
  width: 160px;
  margin: 10px 0;
  font-size: 15px;
  line-height: 1;
}

.main_kinkyu .main_kinkyu-list li a {
  margin-left: 20px;
}

.main_kinkyu .main_kinkyu-list li:before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: url(/assets/images/idx_icon_dot-pink.gif) left center no-repeat;
  width: 20px;
  height: 6px;
}

.main_legacy {
  padding: 10px 0 9px;
}

.main_legacy p {
  border-left: 7px solid #6abd68;
  width: 100%;
  margin: 0;
}

.main_sgift {
  width: 184px;
}

.main_friendonation {
  width: 194px;
}

.left-row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-top: 1px solid #ddd;
}

.left-row2 .main_sgift {
  margin: 0 10px 0 0;
}

.main_friendonation {
  margin: 0;
}

.main_advocacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url(/assets/images/idx_main_ad_bg.jpg) center center no-repeat;
  background-size: 100% auto;
  width: 100%;
  margin-top: 24px;
}

.main_advocacy_img {
  position: relative;
  display: block;
  height: 200px;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
}

.main_advocacy .main_cre {
  width: 173px;
}

.main_advocacy .main_sdgsclub {
  width: 202px;
}

.main_advocacy .main_kodomo {
  width: 185px;
}

.main_advocacy_img a {
  display: block;
  opacity: 1;
}

.main_advocacy_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
}

.main_advocacy_img img:nth-of-type(2) {
  opacity: 0;
}

.main_advocacy_img a:hover img:nth-of-type(1) {
  opacity: 0;
}

.main_advocacy_img a:hover img:nth-of-type(2) {
  opacity: 1;
}

/* news_area */
.news_area {
  margin: 30px 0 0 0;
}

.news_area_tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news_area .news_area_tit h2 {
  background: url("/images/toppage/news_area_h2.gif") no-repeat scroll left center transparent;
  color: #09f;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  padding: 0 0 0 30px;
}

.news_area .news_area_tit p {
  background: #09f;
  margin: 0;
  text-align: center;
}

.news_area .news_area_tit p a {
  color: #fff;
  display: block;
  width: 90px;
  padding: 7px;
  font-size: 1.3rem;
  text-decoration: none;
}

.news_area .news_area_tit p a:hover {
  color: #0099ff;
  background-color: #a2daff;
}

.news_area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}

.news_area ul li {
  width: calc((100% - 60px) / 4);
  display: block;
}

.news_area ul li img {
  border: 1px solid #ccc;
  width: 230px;
  height: 154px;
}

.news_area ul li:last-child {
  margin-right: 0;
}

.news_area ul li p {
  margin: 3px 0;
  font-size: 1.3rem;
}

.news_area ul li p.date {
  color: #09f;
  font-weight: bold;
}

.news_area div i {
  font-size: 1.2em;
  padding-left: 8px;
  vertical-align: middle;
}

/* info_area */
.info_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0 0 0;
}

.info_area_left1 {
  width: 200px;
}

.info_area_left2 {
  width: 496px;
}

.infto_area_right {
  width: 240px;
}

.info_area_left1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 5px;
}

.info_area_left1 a {
  color: #09f;
}

.info_area_left1 a:hover {
  color: #f90;
}

.info_area_left1 h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: bold;
}

.info_area_left1 p {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.info_area_left1-library {
  margin-top: auto;
  margin-bottom: 25px !important;
}

.info_area_left2 {
  margin-top: 5px;
}

.info_area_left2 h3 a {
  display: block;
  margin: 0 0 15px;
  color: #09f;
  font-size: 1.5rem;
  font-weight: bold;
}

.info_area_left2 .info_activity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}

.info_area_left2 .info_activity a {
  display: block;
  width: 115px;
}

.info_area_left2 .info_activity .info_activity-img {
  width: 120px;
}

.info_area_left2 .info_act-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.info_area_left2 .info_act-list li {
  width: 80px;
  text-align: center;
}

.info_area_left2 .info_act-list li p {
  margin: 2px;
  font-size: 1.2rem;
  letter-spacing: -0.5px;
}

.infto_area_right div i {
  font-size: 1.2em;
  padding-left: 8px;
  vertical-align: middle;
}

.infto_area_right ul {
  clear: both;
  height: 310px;
  overflow-y: scroll;
  border: 1px solid #ccc;
  padding: 10px;
  margin: 10px 0 0 0;
}

.infto_area_right ul li {
  padding: 10px 0;
  border-bottom: 1px dotted #666;
  font-size: 1.3rem;
}

.infto_area_right ul li a {
  text-decoration: none;
}

.infto_area_right h2 {
  width: 125px;
  float: left;
  margin: 0;
  padding: 5px 0 0 0;
  color: #09f;
  font-size: 1.8rem;
  font-weight: bold;
}

.infto_area_right h2 i {
  margin-right: 5px;
  font-size: 1.2em;
}

.infto_area_right div {
  float: right;
  text-align: center;
  background: #09f;
  margin: 0 0 10px 0;
}

.infto_area_right div a {
  display: block;
  width: 90px;
  padding: 7px;
  color: #fff;
  font-size: 1.3rem;
}

.infto_area_right div a:hover {
  color: #0099ff;
  background-color: #a2daff;
}

.info_area_bottom {
  clear: both;
  position: relative;
  float: left;
}

.info_area_bottomimage {
  float: left;
}

.info_area_bottom2 {
  float: left;
  border: 1px solid #ccc;
  height: 70px;
  width: 523px;
  position: relative;
}

.info_area_bottom2 p {
  float: left;
  width: 120px;
  text-align: center;
}

.info_area_bottom2 img {
  position: absolute;
  right: 5px;
  top: 5px;
}

/* other_area */
.other_area h3 {
  color: #09f;
  font-size: 1.5rem;
  font-weight: bold;
}

.other_area hr {
  clear: both;
  border-top: 0 none;
  border-left: 0 none;
  border-right: 0 none;
  border-bottom: 1px solid #ccc;
  margin: 30px 0;
  padding: 15px;
}

.other_area_syushi {
  width: 490px;
  float: left;
  margin: 30px 0 0 0;
}

.other_area_syushi h3 {
  background: url("/images/toppage/other_h3_1.gif") no-repeat scroll left center transparent;
  padding: 0 0 0 22px;
  margin: 0 0 10px 0;
}

.other_area_syushi h3 a {
  color: #0099ff;
}

.other_syushi-txt {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.other_area_katsudo {
  width: 465px;
  float: right;
  padding: 0 0 0 22px;
  border-left: 1px solid #ccc;
  margin: 30px 0 0 0;
}

.other_area_katsudo h3 {
  margin: 0 0 10px 0;
}

.other_area_katsudo h3 a {
  color: #0099ff;
}

.other_area_katsudo h3 i {
  font-size: 1.7rem;
  margin-right: 5px;
}

.other_area_katsudo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.other_area_katsudo ul li {
  display: block;
  width: calc((100% - 20px) / 3);
  margin: 0 0 20px 0;
  text-align: center;
}

.other_area_katsudo ul li a {
  display: block;
  color: #09f;
}

.other_area_katsudo ul li p {
  display: block;
  margin: 0;
  font-size: 1.3rem;
}

.other_area_katsudo ul li:nth-child(3) p {
  letter-spacing: -0.02em;
}

.other_area_ouen {
  width: 490px;
  float: left;
  margin: 0;
}

.other_area_ouen h3 {
  margin: 0 0 10px;
}

.other_area_ouen h3 i {
  font-size: 1.7rem;
  margin-right: 5px;
}

.other_area_ouen1 {
  background: url("/images/toppage/other_area_ouen01.gif") no-repeat scroll 0 0 transparent;
  width: 258px;
  padding: 40px 0 0 0;
  float: left;
  position: relative;
}

.other_area_ouen2_top {
  margin-bottom: 8px;
}

.other_area_ouen1 a:hover img {
  opacity: 1;
}

.other_area_ouen1_leftlink {
  display: block;
  width: 40px;
  height: 25px;
  position: absolute;
  top: 0;
  left: 80px;
}

.other_area_ouen1_rightlink {
  display: block;
  width: 40px;
  height: 25px;
  position: absolute;
  top: 0;
  right: 90px;
}

.other_area_ouen2 {
  /* background:url('/images/toppage/other_area_ouen02.gif') no-repeat scroll 0 0 transparent; */
  width: 172px;
  height: 30px;
  padding: 0;
  float: left;
  margin: 0 0 0 30px;
}

.other_area_ouen2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.other_area_ouen2 ul li {
  width: calc((100% - 2px) / 3);
  margin-bottom: 1px;
}

#carouselwrap_vr {
  position: relative;
  margin: 5px auto;
  width: 258px;
  height: 140px;
  background: #fff;
}

#carouselwrap_vr #carousel_vr {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#carouselwrap_vr ul {
  list-style-type: none;
}

#carouselwrap_vr ul li {
  width: 100%;
  height: 40px;
  padding-top: 5px;
}

#carouselwrap_vr ul li img {
  border: none;
  margin: 0 10px 0 0;
}

#carouselwrap_vr ul li img.imgc2 {
  width: 121px;
}

#carouselwrap_vr ul li img.last {
  margin-right: 0 !important;
}

#carouselwrap_vr ul li.notice {
  width: 100%;
  height: 30px;
  padding-top: 15px;
}

#carouselwrap_vr ul li.notice p {
  font-size: 9px;
  width: 80%;
  margin: 0 auto;
  color: #333;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.2em;
}

#carouselwrap_vr #prev_vr, #carouselwrap_vr #next_vr {
  position: absolute;
  left: 105px;
  width: 15%;
  height: 20px;
  margin-top: 0;
}

#carouselwrap_vr #prev_vr {
  top: -20px;
  background-image: url(/images/toppage/slider/top.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

#carouselwrap_vr #next_vr {
  top: unset;
  bottom: -20px;
  background-image: url(/images/toppage/slider/bottom.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

#carouselwrap_vr .show {
  cursor: pointer;
  background: #000;
  opacity: 0.2;
}

#carouselwrap_vr .hide {
  background: #000;
  opacity: 0;
}

.other_area_houhou {
  width: 465px;
  float: right;
  padding: 0 0 0 22px;
  border-left: 1px solid #ccc;
  margin: 0 0 10px 0;
}

.other_area_houhou a {
  color: #09f;
}

.other_area_houhou h3 {
  margin: 0 0 10px;
}

.other_area_houhou h3 i {
  font-size: 1.7rem;
  margin-right: 5px;
}

.other_area_houhou ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.other_area_houhou ul li {
  display: block;
  width: calc((100% - 24px) / 3);
  margin: 0 0 20px;
  text-align: center;
}

.other_area_houhou ul li p {
  display: block;
  margin-top: 5px;
  font-size: 1.3rem;
}
