@charset "utf-8";

/* ================================================================================
chairperson
================================================================================= */


/* ================================================================================
sec_lead
================================================================================= */
#sec_lead .inner {
  padding:50px 10px 110px;
  background:#61b5be url(../img/bg_lead.png) center bottom no-repeat;
  background-size:1200px auto;
  text-align:center;
  font-family:"Sawarabi Mincho", serif;
  color:#fff;
}
#sec_lead .inner dt {
  font-size:24px;
}
#sec_lead .inner dd {
  margin-top:10px;
}
#sec_lead .inner dd + dt {
  margin-top:30px;
}
#sec_lead .photo {
  display:-webkit-flex;
  display:flex;
}
#sec_lead .photo li {
  width:33.33%;
}
/* スマホサイズ調整----------------------------　*/
@media only screen and (max-width:768px) {
#sec_lead .inner {
  padding:30px 10px 20%;
  background-size:100% auto;
}
#sec_lead .inner dt {
  font-size:20px;
}
#sec_lead .inner dd br {
  display:none;
}
}


/* ================================================================================
sec_mc
================================================================================= */
#sec_mc {
  padding:60px 0 80px;
  background:#61b5be;
  overflow:auto;
  color:#fff;
  font-family:"Sawarabi Mincho", serif;
}
#sec_mc .en {
  color:#fff;
}
#sec_mc_lead {
  margin-bottom:50px;
}
#sec_mc_lead .txt_number {
  margin:15px 0 30px;
  font-size:21px;
  text-align:center;
}

/* PCサイズ調整----------------------------　*/
@media only screen and (min-width:769px) {
#sec_mc_list h3:first-child {
  padding-bottom:50px;
  border-bottom:3px solid #fff;
}
}

/* スマホサイズ調整----------------------------　*/
@media only screen and (max-width:768px) {
#sec_mc {
  padding:30px 0 25px;
}
#sec_mc_lead {
  margin-bottom:25px;
}
#sec_mc_lead .txt_number {
  margin:15px 0 25px;
  font-size:16px;
}
#sec_mc_list {
  margin:0 -10px;
}
#sec_mc_list h3:first-child {
  padding:15px 10px;
  background:#0087ab;
}
}


/* ================================================================================
box_area
================================================================================= */
.box_area {
  padding-top:50px;
}
.area_list {
  display:-webkit-flex;
  display:flex;
  margin-bottom:20px;
}
.area_list li {
  width:100px;
  margin-left:15px;
  line-height:100px;
  text-align:center;
  background:#fff;
  color:#666;
  font-size:24px;
}
.area_list li.large {
  width:200px;
}
.area_list li:first-child {
  margin-left:0;
}
.mc_list .mc_box {
  float:left;
  width:196px;
  margin:10px 0 0 10px;
}
.mc_list .pic {
  position:relative;
  border:5px solid #fff;
  background:#fff;
  cursor:pointer;
}
.mc_list .pic .inner {
  overflow:hidden;
}
.mc_list .pic p {
  position:absolute;
  bottom:-1px;
  left:-1%;
  width:102%;
  padding:8px 12px;
  background:rgba(0,0,0,.3);
  color:#fff;
  font-size:12px;
  text-align:left;
  line-height:1.3;
}
.mc_list .pic p span {
  display:block;
  font-size:23px;
  letter-spacing:.1em;
}
.mc_list ul {
  display:-webkit-flex;
  display:flex;
  -webkit-justify-content:space-between; 
  justify-content:space-between;
  margin:5px 2px 0;
}
.mc_list .bt_mc {
  -webkit-flex:1;
  flex:1;
  margin-right:5px;
}
.mc_list .bt_mc a {
  display:block;
  border-radius:10px;
  background:#fff;
  text-align:center;
  line-height:37px;
  font-weight:bold;
  color:#666;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}
.mc_list .bt_mc a:hover {
  color:#aaa;
}
.mc_list .bt_movie {
  width:46px;
} 
.mc_list .bt_movie a,
.mc_list .bt_movie span {
  display:block;
  position:relative;
  height:37px;
  border-radius:10px;
  background:#c8c9c9;
  text-indent:100%;
  overflow:hidden;
  white-space:nowrap;
}
.mc_list .bt_movie a:after,
.mc_list .bt_movie span:after {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  content:"";
  display:block;
  width:0;
  height:0;
  border-style:solid;
  border-width:9.5px 0 9.5px 14px;
  border-color:transparent transparent transparent #fff;
}
.mc_list .bt_movie a {
  background:#0087ab;
}
.mc_list .bt_movie a:hover {
  background:#90cbd1;
}

/* アニメーション ----------------- */
.mc_list .pic:after,
.mc_list .pic:before,
.mc_list .pic .inner:after,
.mc_list .pic .inner:before {
  content:"";
  display:block;
  position:absolute;
  background-color:#0087ab;
  z-index:10;
  transition:all .3s ease;
}
.mc_list .pic:after {
  height:5px;
  left:-5px;
  top:-5px;
  width:0;
}
.mc_list .pic:before {
  bottom:-5px;
  height:5px;
  right:-5px;
  width:0;
}
.mc_list .pic .inner:after {
  bottom:-5px;
  height:0;
  left:-5px;
  width:5px;
}
.mc_list .pic .inner:before {
  height:0;
  right:-5px;
  top:-5px;
  width:5px;
}
.mc_list .pic:hover:after,
.mc_list .pic:hover:before {
  width:100%;
  width:calc(100% + 5px);
}
.mc_list .pic:hover .inner:after,
.mc_list .pic:hover .inner:before {
  height:100%;
  height:calc(100% + 5px);
}

/* PCサイズ調整----------------------------　*/
@media only screen and (min-width:769px) {
.mc_list .mc_box:nth-child(5n+1) {
  clear:both;
  margin-left:0;
}
}

/* スマホサイズ調整----------------------------　*/
@media only screen and (max-width:768px) {
.box_area {
  margin:0;
  padding:0;
}
.box_area + .box_area {
  margin-top:1px;
}
.area_list {
  position:relative;
  margin-bottom:0;
  background:#e6f3f5;
  padding:10px 18px;
}

/*
.area_list:after {
  content:"";
  display:block;
  position:absolute;
  top:50%;
  right:18px;
  width:6px;
  height:6px;
  margin-top:-6px;
  border-top:1px solid #666;
  border-right:1px solid #666;
  -webkit-transform:rotate(135deg);
  transform:rotate(135deg);
}
.area_list.active:after {
  margin-top:-1px;
  transform:rotate(-45deg);
}
*/

.area_list li,
.area_list li.large {
  width:auto;
  margin-left:0;
  line-height:1.6;
  font-size:16px;
  background:transparent;
}
.area_list li + li:before {
  content:"・";
}
.area_list li:first-child {
  margin-left:0;
}
.mc_list {
/* display:none; */
  margin:0 0 15px 0;
  padding:0 10px;
}
.mc_list .mc_box {
  width:49%;
  margin:10px 0 0 2%;
}
.mc_list .mc_box:nth-child(2n+1) {
  clear:both;
  margin-left:0;
}
.mc_list .pic p span {
  font-size:19px;
}
.mc_list .bt_mc a {
  font-size:13px;
}
.mc_list .bt_movie {
  width:40px;
} 
.mc_list .bt_movie a:after,
.mc_list .bt_movie span:after {
  border-width:8px 0 8px 10px;
}
.mc_list .bt_movie a {
  background:#61b5be;
}
.mc_list .bt_movie a:hover {
  background:#90cbd1;
}
}

/* スマホサイズ調整　400px以下　----------------------------　*/
@media only screen and (max-width:400px) {
.mc_list ul {
  display:block;
  margin:5px 2px 0;
}
.mc_list .bt_mc {
  margin:0;
}
.mc_list .bt_movie {
  width:100%;
  margin-top:5px;
} 
}


/* ================================================================================
modal_window
================================================================================= */
div.remodal-overlay {
  background:rgba(0,0,0,.4);
  -webkit-backdrop-filter:blur(6px);
  backdrop-filter:blur(6px);
  -webkit-overflow-scrolling:touch;
}
div.remodal-wrapper {
  padding:0;
}
.modal_window.remodal {
  max-width:880px;
  margin:0;
  padding:40px;
  border-radius:3px;
  text-align:left;
}
.modal_window.remodal img {
  display:block;
}
.modal_close {
  display:block;
  position:absolute;
  bottom:-32px;
  right:15px;
  cursor:pointer;
  color:#fff;
}

/* スマホサイズ調整----------------------------　*/
@media only screen and (max-width:768px) {
.modal_window.remodal {
  padding:15px;
}
}


/* ================================================================================
sec_online
================================================================================= */
#sec_online {
  background:url(../img/bg_online.jpg) center center no-repeat;
  background-size:cover;
}


/* ================================================================================
Clearfix
================================================================================= */
.mc_nav:after,
.mc_list:after {
  content:'';
  display:block;
  clear:both;
  height:0;
}
