@charset "UTF-8";
@import url('//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
  --red: #E60000;
  --red02: #D20A00;
  --darkred: #920A00;
  --gray: #707070;
  --khaki: #B59B64;
  --beige: #D6B671;

}

*{
  margin: 0;
  box-sizing: border-box !important;
  font-feature-settings: "palt"; /* auto curning (for OpenType) */
}

/* reset */
ol, ul {list-style-type: none;}
dl, dt, dd{margin:0;padding:0;text-indent:0;}
figure{margin:0;}
/* basic styles */
html {
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  background-color: #FFF;
  color: #000;
  font-size: 75%;
  font-family: 'Noto Sans JP', "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 2;
}
img{
  display: block;
  margin: 0;
  width: 100%;
}
div img {
  vertical-align: top;
}
/* Link */
a {
  color: #000; /* 適宜変更 */
  text-decoration: none;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
  -ms-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
}
a:hover {
  opacity:0.5;
  filter: alpha(opacity=50);
  -moz-opacity:0.5;
  -webkit-filter: alpha(opacity=50);
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767.98px) {
  .pc {
    display: none !important;
  }
}

/* Heading */
h2 {
  font-size: 50px;
  font-weight: 600;
}
@media screen and (max-width: 767.98px) {
  h2 {
    font-size: 28px;
  }
}

h2.h2_red {
  color: var(--red);
  letter-spacing: 3px;
  text-align: center;
  line-height: 1.4;
}
h2.h2_red.h2_sub{
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  margin-bottom: 50px;
  padding: 0 0.7em;
  position: relative;
}
h2.h2_red.h2_sub::before{
  content: "";
  width: 520px;
  height: 1px;
  background: var(--red);
  position: absolute;
  top: 80px;
}
h2.h2_red.h2_sub span{
  margin-top: 16px;
  font-size: 26px;
}
@media screen and (max-width: 767.98px){
  h2.h2_red.h2_sub {
    font-size: 26px;
    margin-bottom: 1em;
    padding: 0;
  }
  h2.h2_red.h2_sub::before{
    width: 80%;
    top: 52%;
  }
  h2.h2_red.h2_sub span{
    font-size: 21px;
  }
}

h2.h2_fff {
  color: #FFF;
  letter-spacing: 3px;
}
/* h2_wing */
h2.h2_wing {
  margin: 0 auto;
  padding: 0;
  display: block;
  width: 550px;
  height: 120px;
  color: #FFF;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  position: relative;
}
h2.h2_wing::before,
h2.h2_wing::after{
  content: "";
  width: 50px;
  height: 100%;
  position: absolute;
}
h2.h2_wing::before{
  background: url(../img/h2_wing.png) no-repeat top left;
  left: 0;
  top: 0;
}
h2.h2_wing::after{
  background: url(../img/h2_wing.png) no-repeat top left;
  transform: scale(-1, 1);
  right: 0;
  top: 0;
}
@media screen and (max-width: 767.98px) {
  h2.h2_wing {
    font-size: 26px;
    width: 80%;
    height: 20vw;
  }
  h2.h2_wing::before,
  h2.h2_wing::after{
    width: 10vw;
    background-size: cover;
  }
}

h3 {
  margin: 70px auto 30px auto;
  font-size: 30px;
  font-weight: 800;
  text-align: left;
  width: 100%;
}
h3.h3_marks {
  display: inline-block;
  margin: 0 auto 35px auto;
  text-align: center;
  line-height: 45px;
  position: relative;
  width: 800px;
  height: 45px;
}
h3.h3_marks::before,
h3.h3_marks::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 100%;
  background: url(../img/h3_icon.png) no-repeat center;
  background-size: 0.8rem;
}
h3.h3_marks::before {
  top: 0;
  left: 0;
}
h3.h3_marks::after {
  top: 0;
  right: 0;
  left: auto;
  transform: scale(-1, 1);
}
@media screen and (max-width: 767.98px) {
  h3 {
    font-size: 21px;
  }
  h3.h3_marks {
    width: 90%;
    font-size: 20px;
    line-height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

p {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-size: 12px;
  font-weight: 400; /* Regular */
}

/* Utility */

.inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1000px;
}
@media screen and (max-width: 999.98px) {
  .inner {
    width: 98%;
  }
}

@media screen and (min-width: 768px) {
.pc_Hide {display: none;}
.sp_Hide {display: block;}
}
@media screen and (max-width: 767.98px) {
  .pc_Hide {display: block;}
  .sp_Hide {display: none;}
}

/* animation */
/* 画面外にいる状態 */
.fadeinLeft {
  opacity:0.0;
  filter: alpha(opacity=0);
  transition : all 500ms;
  -webkit-transform : translate(-50px, 0);
  -moz-transform : translate(-50px, 0);
  -ms-transform : translate(-50px, 0);
  -o-transform : translate(-50px, 0);
  transform : translate(-50px, 0);
  -moz-opacity:0.0;
}
.fadeinRight {
  opacity:0.0;
  filter: alpha(opacity=0);
  transition : all 500ms;
  -webkit-transform : translate(50px, 0);
  -moz-transform : translate(50px, 0);
  -ms-transform : translate(50px, 0);
  -o-transform : translate(50px, 0);
  transform : translate(50px, 0);
  -moz-opacity:0.0;
}
.fadeinBottom {
  opacity:0.0;
  filter: alpha(opacity=0);
  transition : all 500ms;
  -webkit-transform : translate(0, 50px);
  -moz-transform : translate(0, 50px);
  -ms-transform : translate(0, 50px);
  -o-transform : translate(0, 50px);
  transform : translate(0, 50px);
  -moz-opacity:0.0;
}

/* 画面内に入った状態 */
.fadeinLeft.scrollin, .fadeinRight.scrollin, .fadeinBottom.scrollin {
  opacity:1.0;
  filter: alpha(opacity=100);
  -webkit-transform : translate(0, 0);
  -moz-transform : translate(0, 0);
  -ms-transform : translate(0, 0);
  -o-transform : translate(0, 0);
  transform : translate(0, 0);
  -moz-opacity:1.0;
}


/* background Pattern */
.bkTriangle{
  z-index: 0;
  position: relative;
  background: #FFF url(../img/bk_triangle01.png) !important;
  background-repeat: repeat-y !important;
  background-size: 100vw auto !important;
  background-position: right -71vw !important;
}
.bkTriangle.bkRed,
#sec02.bkTriangle.bkRed{
  z-index: 0;
  position: relative;
  background: #E60000 url(../img/bk_triangle02.png) !important;
  background-repeat: repeat-y !important;
  background-size: 100vw auto !important;
  background-position: right -71vw !important;
}
.bkTriangle.bkTriangle03{
  background: #FFF url(../img/bk_triangle03.png) !important;
  background-repeat: no-repeat !important;
  background-size: 100vw auto !important;
  background-position: right 0.5vw !important;
}
.bkSec01 {
  margin: -100px 0 0 0;
  padding: 140px 0 0 0;
}
@media screen and (max-width: 767.98px) {
  .bkSec01 {
    margin: -100px 0 0 0;
    padding: 110px 0 0 0;
  }
}

/* parallax area */
.secSkew {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
  clip-path: polygon(0% 20%, 100% 0%, 100% 80%, 0% 100%);
  /* box-shadow: inset 4px 4px 4px rgba(0, 0, 0, 0.5); */ /* clip-pathだと効かない？ */
  z-index: 3;
  position: relative;
}
.secSkew::before{
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/parallax/para01.jpg);
  /* background-attachment: fixed; */ /* ←iOSでは無効 */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.secSkewFixed {
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
  /* clip-path: polygon(0% 20%, 100% 0%, 100% 80%, 0% 100%); */
  /* box-shadow: inset 4px 4px 4px rgba(0, 0, 0, 0.5); */ /* clip-pathだと効かない？ */
  z-index: 3;
  position: relative;
}
.secSkewFixed::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/parallax/para01.jpg);
  /* background-attachment: fixed; */ /* ←iOSでは無効 */
  background-position: center;
  background-size: 2140px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.98px) {
  .secSkewFixed::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url(../img/parallax/para01.jpg);
    /* background-attachment: fixed; */ /* ←iOSでは無効 */
    background-position: center;
    background-size: 2140px;
    background-repeat: no-repeat;
  }
}
/* 疑似 box-shadow inset */
.secSkew span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(-2.5deg, #000 , transparent 21%, transparent 79%, #000);
}
/* parallax images */
.secSkew.para01::before {
  background-image: url(../img/parallax/para01.jpg) !important;
  background-position: center;
}
.secSkew.para02::before {
  background-image: url(../img/parallax/para02.jpg) !important;
  background-position: center top;
  position: absolute;
}
@media screen and (max-width: 767.98px) {
  .secSkew.para02::before {
    background-image: url(../img/parallax/para02.jpg) !important;
    background-position: center top;
    background-size: 150% !important;
  }
}
.secSkew.para03::before {
  background-image: url(../img/parallax/para03.jpg) !important;
  background-position: center;
}
.secSkew.para04::before {
  background-image: url(../img/parallax/para04.jpg) !important;
  background-position: center;
}
.secSkewFixed.para05::before {
  background-image: url(../img/parallax/para05.jpg) !important;
  background-position: center 48%;
}
@media screen and (max-width: 767.98px) {
  .secSkewFixed.para05::before {
    background-image: url(../img/parallax/para05.jpg) !important;
    background-position: center;
    background-size: 220% !important;
  }
}
.secSkew.para06::before {
  background-image: url(../img/parallax/para06.jpg) !important;
  background-position: center;
}
@media screen and (max-width: 767.98px) {
  .secSkew{
    height: 50vw;
    top: -20px;
  }
  .secSkew::before,
  .secSkew.para01::before,
  .secSkew.para02::before,
  .secSkew.para03::before,
  .secSkew.para04::before,
  .secSkew.para05::before,
  .secSkew.para06::before {
    width: 100vw;
    height: 100vh;
    background-size: auto 100vh;
  }
}
/* flex row box */
.flex .rowBox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.flex .rowBox figure{
  display: block;
  margin: 0 auto;
  width: 80%;
  margin-bottom: 40px;
}
.flex .rowBox figure img{
  width: 100%;
  height: auto;
}
.flex .rowBox p {
  margin: 0 auto;
  display: block;
  font-size: 16px;
  line-height: 2.2;
  color: #333;
  width: 61%;
}
.flex .rowBox .textBox{
  margin: 0 auto 40px auto;
  padding: 0;
  display: block;
  width: 100%;
  overflow: hidden;
}
.textBox p{
  padding: 0 0 40px 0;
}
.flex .rowBox dl {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 0 auto 30px auto;
  width: 61%;
}
.flex .rowBox dt,
.flex .rowBox dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flex .rowBox dt img{
  width: 80px;
  height: 100px;
  margin: 0;
}
.flex .rowBox dd {
  width: 510px;
  padding: 1em 0;
}
.flex .rowBox dd p {
  padding: 0;
  width: 100% !important;
  font-weight: 600;
}
.flex .rowBox dl.dl_kids dd p{color:#333;}
.flex .rowBox dl.dl_horie dd p{color:#00406F;}
.flex .rowBox dl.dl_yamazawa dd p{color:#001FA3;}
@media screen and (max-width: 767.98px){
  .flex .rowBox figure{
    width: 90%;
    margin-bottom: 1em;
  }
  .flex .rowBox p {
    width: 90%;
  }
  .flex .rowBox dl{
    width: 90%;
  }
  .flex .rowBox dt img{
    width: 15vw;
    height: auto;
    margin: 0;
  }
  .flex .rowBox dd{
    width: calc(100% - 17vw);
  }
}


/* box Topic */
.boxTopic{
  margin: 0 auto;
  padding: 5% 11%;
  width: 100%;
  height: auto;
  background: #FFF url(../img/bk_topic01.png) no-repeat top center;
  background-size: 100% auto;
  position: relative;
  color: #000;
}
.boxTopic.boxRed{
  margin: 0 auto;
  padding: 5% 11%;
  width: 100%;
  height: auto;
  background: var(--red) url(../img/bk_topic02.png) no-repeat top center;
  background-size: 100% auto;
  position: relative;
  color: #FFF;
}
.boxTopic .flex{
  margin: 0 auto;
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.boxTopic h3{
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  font-feature-settings: "pkna";
}
.boxTopic p{
  font-size: 16px;
  padding: 20px 0 40px 0;
  letter-spacing: .07em;
}
@media screen and (max-width: 767.98px){
  .boxTopic,
  .boxTopic.boxRed{
    padding: 5%;
    width: 90%;
    overflow: hidden;
  }
  .boxTopic h3{
    font-size: 26px;
    line-height: 1.6;
  }
}

/* boxTopic01 */
#boxTopic01.boxTopic.boxRed h3{
  margin: 0 auto 30px auto;
}
#boxTopic01.boxTopic.boxRed .flex{
  width: 780px;
  align-items: stretch;
  margin: 20px auto;
}
#boxTopic01.boxTopic.boxRed .flex figure{
  width: 168px;
  height: auto;
}
#boxTopic01.boxTopic.boxRed .flex figure img{
  width: 168px;
  height: auto;
}
#boxTopic01.boxTopic.boxRed .message{
  width: 580px;
  height: auto;
}
#boxTopic01.boxTopic.boxRed .message h4 {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 30px;
  line-height: 1;
}
#boxTopic01.boxTopic.boxRed .message h4 span{
 font-size: 20px;
}
#boxTopic01.boxTopic.boxRed .message p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.7;
  font-feature-settings: "pkna";
}

@media screen and (max-width: 999.98px) {
  #boxTopic01.boxTopic.boxRed .flex{
    width: 100%;
  }
}
@media screen and (max-width: 767.98px){
  #boxTopic01.boxTopic.boxRed h3{
    margin: 0 auto 1em auto;
  }
  #boxTopic01.boxTopic.boxRed .flex{
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }
  #boxTopic01.boxTopic.boxRed .flex figure,
  #boxTopic01.boxTopic.boxRed .message{
    width: 100%;
    text-align: center;
  }
  #boxTopic01.boxTopic.boxRed .flex figure img{
    width: 42vw;
    margin: 0 auto;
  }
  #boxTopic01.boxTopic.boxRed .message h4 {
    padding-top: 10px;
    font-size: 24px;
  }
  #boxTopic01.boxTopic.boxRed .message p{
    text-align: left;
    font-feature-settings: "palt";
  }
}

/* boxTopic02 */
#boxTopic02.boxTopic h3{
  margin: 40px auto 30px auto;
  line-height: 1.4;
}
#boxTopic02.boxTopic .flex {
  width: 860px;
}
#boxTopic02.boxTopic figure {
  width: 250px;
}
#boxTopic02.boxTopic figure img {
  width: 250px;
  height: auto;
}
#boxTopic02.boxTopic figcaption {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.8;
}
#boxTopic02.boxTopic figcaption span {
  font-size: 14px;
}
#boxTopic02.boxTopic .message {
  margin: 0;
  padding: 0 50px 0 0;
  width: 550px;
  height: auto;
}
#boxTopic02.boxTopic .message p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.7;
  font-feature-settings: "pkna";
}
#boxTopic02.boxTopic .message p:first-child {
  margin: -8px 0 2em 0;
}
@media screen and (max-width: 999.98px) {
  #boxTopic02.boxTopic .flex {
    width: 100%;
  }
  #boxTopic02.boxTopic .message {
    padding: 0;
    width: calc(100% - 280px);
  }
}
@media screen and (max-width: 767.98px){
  #boxTopic02.boxTopic h3{
    margin: 0 auto 1em auto;
    line-height: 1.4;
  }
  #boxTopic02.boxTopic .flex {
    flex-direction: column;
  }
  #boxTopic02.boxTopic figure {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  #boxTopic02.boxTopic figure img {
    display: block;
    width: 42vw;
    margin: 0 auto;
  }
  #boxTopic02.boxTopic figcaption {
    margin-top: 5px;
    line-height: 1.4;
  }
  #boxTopic02.boxTopic .message,
  #boxTopic02.boxTopic .message p {
    width: 100%;
    font-feature-settings: "palt";
    margin: 0;
    padding: 0;
  }
  #boxTopic02.boxTopic .message p:first-child {
    margin: 0 0 1em 0;
  }
}
/* ///// content styles ///// */
/* headerArea */
#headerArea {
  width: 100%;
  height: 41.666vw;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
  z-index: 1;
  background: url(../img/bk_header.png) no-repeat top center;
  background-size: auto 118%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 999.98px) {
  #headerArea {
    height: 50vh;
  }
}
@media screen and (max-width: 767.98px) {
  #headerArea {
    background: url(../img/bk_header_sp.png) no-repeat top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    height: 84vw;
  }
}


#header {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 41.6vw;
  overflow: hidden;
  z-index: 2;
  position: relative;
}
#headerInner {
  margin: 0 auto;
  padding: 13px 0 14px 0;
  width: 100%;
  max-width: 1000px;
  height: 70px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 3;
  background: transparent;
  color: #FFF;
}
.siteLogoTop {
  margin: 0 auto 0 0;
  display: block;
  width: 111px;
  height: 100%;
  outline: none;
}
.siteLogoTop a,
.siteLogoTop a img{
  margin: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
}
.planning {
  margin: 0;
  height: 100%;
  width: calc(50% - 150px);
}
.planning p {
  margin: 0;
  padding: 0;
  line-height: 34px;
  text-align: left;
  display: flex;
  justify-self: center;
  align-items: center;
}
.planning p span {
  font-size: 1rem;
}
.headerSns {
  margin: 0 0 0 auto;
  padding: 0;
  color: #FFF;
  width: 50%;
}
.headerSns ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  margin: 0 0 0 auto;
  padding: 0;
  width: 170px;
  height: auto;
}
.headerSns ul li{
  margin: 0;
  padding: 0 0 0 5px;
  width: 50px;
}
.headerSns ul li:first-child {
  font-size: 16px;
  font-weight: 600;
  width: 70px;
  line-height: 43px;
}
.headerSns ul li a{
  display: block;
  margin: 0 0 auto 0;
  width: 43px;
  height: 43px;
}
@media screen and (max-width: 999.98px) {
  #header {
    height: 100%;
  }
  #headerInner {
    max-width: 98%;
  }
}
@media screen and (max-width: 767.98px) {
  #header {
    height: 100%;
  }
  #headerInner {
    width: 96%;
    height: auto;
    flex-direction: column;
    position: relative;
  }

  .planning {
    margin-top: 1em;
    width: 70%;
  }
  .planning p{
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
  }
  .planning p,
  .planning p span {
    font-size: 10px;
    line-height: 1.2;
  }
  .headerSns {
    width: 30%;
    position: absolute;
    right: 0;
    top: 10%;
  }
  .headerSns ul{
    width: 100%;
  }
  .headerSns ul li{
    width: 48%;
  }
  .headerSns ul li:first-child {
    display: none !important;
  }
  .headerSns ul li a{
    width: 100%;
  }
  .headerSns ul li a img{
    width: 100%;
  }
}
.headerTitle {
  width: 100%;
  height: calc(41.6vw - 70px);
  display: block;
  position: relative;
  top: 0;
  z-index: 1;
}
.headerTitle .inner {
  height: 100%;
  position: relative;
}
h1.mainTitle {
  margin: 0 auto 0 0;
  padding: 0;
  display: block;
  width: 800px;
  height: 251px;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 75%;
  left: 50%;
  opacity: 0;
  -webkit-transition-duration: 0.85s;
  -moz-transition-duration: 0.85s;
  -ms-transition-duration: 0.85s;
  -o-transition-duration: 0.85s;
  transition-duration: 0.85s;
}
h1.mainTitle.active {
  opacity: 1;
  top: 70%;
}
@media screen and (max-width: 999.98px){
  .headerTitle {
    height: 100%;
  }
  .headerTitle .inner {
    width: 98%;
    height: 100%;
  }
  h1.mainTitle {
    width: 70%;
    height: auto;
    transform: translate(-50%,-50%);
    top: 55%;
    bottom: auto;
    left: 50%;
    padding-left: 0;
  }
  h1.mainTitle.active {
    opacity: 1;
    top: 50%;
  }
}
@media screen and (max-width: 767.98px){
  .headerTitle {
    height: 70%;
  }
  h1.mainTitle {
    top: auto;
    left: 50%;
    top: 55%;
  }
  h1.mainTitle img {
    width: 100%;
    margin: 0 auto;
  }
}

/* headerSummary */
#headerSummary {
  margin: 0 auto -200px auto;
  padding: 120px 0 120px 0;
  width: 100%;
  height: auto;
  position: relative;
  z-index: -1;
  top: -100px;
}
@media screen and (max-width: 767.98px) {
  #headerSummary {
    margin: 0 auto -120px auto;
    padding: 120px 0 180px 0;
    width: 100%;
    height: auto;
    position: relative;
    z-index: -1;
    top: -100px;
  }
}
#headerSummary figure {
  margin: 0 auto 30px auto;
  padding: 0;
  width: 650px;
}
#headerSummary p{
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
}
#headerSummary p.pBold{
  font-weight: 600;
  padding: 1em 0;
}
@media screen and (max-width: 767.98px){
  #headerSummary {
    padding-bottom: 10vw;
  }
  #headerSummary figure {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1em;
    width: 70%;
    display: block;
    margin: 20px 0 10px 0;
  }
  /* #headerSummary figure img.hs_lone {
    width: 50%;
    height: auto;
  }
  #headerSummary figure img.hs_mufg {
    width: 32%;
    height: auto; */
  }
  #headerSummary p,
  #headerSummary p.pBold {
    font-size: 16px;
    padding: 1em;
  }
}

/* section 01 */
#sec01 {
  margin: -100px auto;
  padding: 150px 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background: #FFF;
  color: #000;
}
/* section 02 */
#sec02 {
  margin: -100px auto;
  padding: 120px 0 150px 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background: var(--red);
  color: #FFF;
  overflow: hidden;
}
#sec02 h2.h2_balloon{
  padding: 60px 0 0 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 610px;
  height: 145px;
  background: url(../img/h2_balloon.png) no-repeat;
  background-position: 0 0;
  background-size: 227px 89px;
}
#sec02 h2.h2_balloon span {
  text-shadow: 3px 3px 0 #000;
  z-index: 1;
}
#sec02 h2.h2_balloon::after{
  content: "";
  background: #841D10;
  width: 425px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  z-index: 0;
}
@media screen and (max-width: 767.98px) {
  #sec02 h2.h2_balloon{
    width: 90%;
  }
  #sec02 h2.h2_balloon::after{
    width: 80%;
  }
}
@media screen and (max-width: 320px) {
  #sec02 h2.h2_balloon{
    font-size: 28px !important;
    background-size: 160px auto;
    background-position: 10% 20% !important;
    width: 90% !important;
  }
  #sec02 h2.h2_balloon::after{
    width: 60%;
    height: 14px;
  }
}
#sec02 .flex.flexSec02{
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}
#sec02 .flex.flexSec02 dl{
  width: calc(50% - 30px);
}
#sec02 .flex.flexSec02 dt{
  text-align: center;
}
#sec02 .flex.flexSec02 dt img {
  display: block;
  margin: 0 auto;
  width: 300px;
  height: auto;
}
#sec02 .flex.flexSec02 dd h3{
  margin: 10px 0;
  font-size: 30px;
  text-align: center;
}
#sec02 .flex.flexSec02 dd p{
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}
@media screen and (max-width: 767.98px) {
  #sec02 .flex.flexSec02{
    margin-top: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    flex-wrap: wrap;
  }
  #sec02 {
    padding: 30vw 0;
  }
  #sec02 h2.h2_balloon{
    width: 100%;
  }
  #sec02 .flex.flexSec02 dl{
    width: 100%;
    margin-top: 40px;
  }
  #sec02 .flex.flexSec02 dt img {
    width: 40vw;
  }
  #sec02 .flex.flexSec02 dd {
    padding: 1em;
  }
  #sec02 .flex.flexSec02 dd h3{
    font-size: 24px;
    line-height: 1.4;
  }
  #sec02 .flex.flexSec02 dd p{
    font-size: 16px;
    font-weight: 400;
    font-feature-settings: "palt";
  }
}

/* section 03, 04 */
#secInterview {
  margin: -100px auto;
  padding: 140px 0 200px 0;
}
@media screen and (max-width: 767.98px){
  #secInterview {
    margin: -100px auto;
    padding: 110px 0 200px 0;
  }
}
#secSdgs {
  margin: -100px auto;
  padding: 140px 0 100px 0;
}
@media screen and (max-width: 767.98px){
  #secSdgs {
    margin: -100px auto;
    padding: 110px 0 100px 0;
  }
}

/* section Kids Reporters */
#secReport {
  margin: -100px auto;
  padding: 150px 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background: var(--red);
  color: #FFF;
}
@media screen and (max-width: 767.98px){
  #secReport {
    margin: -100px auto;
    padding: 120px 0 150px 0;
  }
}
#secReport .summary {
  margin-top: 50px;
  font-size: 16px !important;
}
#listReport {
  padding: 0 0 10% 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
#listReport dl.boxReport {
  width: 230px;
  margin: 5% 1% 0 0;
}
#listReport dl.boxReport:nth-child(4n){
  margin: 5% 0 0 0;
}
#listReport dt,
#listReport dd {
  position: relative;
  width: 100%;
  height: auto;
}
#listReport dt {
  height: 310px;
}
img.imgReport {
  width: 180px;
  height: 255px;
  position: absolute;
  top: 0;
  right: 0;
}
img.imgReporter{
  width: 127px;
  height: 127px;
  position: absolute;
  bottom: 0;
  left: 0;
}
#listReport dd h3 {
  margin: .5em 0 0 0;
  text-align: center;
  font-size: 26px;
}
#listReport dd h3 span {
  font-size: 20px;
}
#listReport dd p {
  padding: 0 1em;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  font-feature-settings: "pkna"; /* auto curning (for OpenType) */
}

@media screen and (max-width: 767.98px){
  #secReport .summary {
    margin-top: 1em;
    text-align: center;
  }
  #listReport {
    padding: 0 0 10vw 0;
    width: 100%;
  }
  #listReport dl.boxReport{
    width: 45%;
    margin: 5% 0 0 0;
    padding: 0 10px;
    height: auto;
  }
  #listReport dl.boxReport:nth-child(4n){
    margin: 5% 0 0 0;
  }
  #listReport dt{
    height: 60vw;
  }
  img.imgReport{
    width: 90%;
    height: auto;
  }
  img.imgReporter{
    width: 20vw;
    height: 20vw;
  }
  #listReport dd h3 {
    margin: 0;
    font-size: 21px;
  }
  #listReport dd p {
    padding: 0;
    font-size: 14px;
    font-feature-settings: "palt";
  }
}
/* section Gallery */
#secGallery {
  margin: -100px auto 0px auto;
  padding: 150px 0 50px 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index:0;
}

#secGallery h2{
  z-index: 1;
}
/* gallery */
#gallery {
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

#gallery > a {
  width: 18.5%;
  margin-top: 2%;
}
#gallery > a img{
  width: 100%;
}

/* modal 上書き */
.mfp-arrow-left:before{
  border-right: unset !important;
}
.mfp-arrow-right:before{
  border-left: unset !important;
}

@media screen and (max-width: 999.98px) {
  #secGallery {
    padding: 30vw 0 0 0;
  }
  #gallery {
    width: 90%;
    padding-bottom: 0;
  }
  #gallery > a {
    margin-top: 4%;
    width: 48%;
  }
  #gallery > a img{
    width: 100%;
  }
}

/* Sponsor Area */
#secSponsors{
  margin: 0 auto;
  padding: 50px 0 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../img/footer_image.png) no-repeat bottom center;
  background-size: 2015px auto;
  width: 100%;
  height: 317px;
  z-index: 2;
}
@media screen and (min-width: 1500px) {
  #secSponsors{
    background: url(../img/footer_image.png) no-repeat bottom center;
    background-size: auto 100%;
  }
}
@media screen and (max-width: 767.98px) {
  #secSponsors {
    width: 100%;
    height: 80vw;
    position: relative;
    bottom: 0;
    margin-top: 0;
    background-size: 110% auto;
  }
}
.ulSponsors {
  margin: 0 auto 30px auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 295px;
  height: auto;
}
.ulSponsors li {
  width: 100%;
  position: relative;
}
/* .ulSponsors li:first-child::after{
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #707070;
  position: absolute;
  right: 0;
  top: 0;
} */
.ulSponsors li:first-child {
  border-bottom: solid 1px #231815;
}
.ulSponsors li a{
  display: block;
  margin: 0 auto;
}
.ulSponsors li a.link_lone{
  width: 295px;
  height: auto;
  padding: 0;
  margin: 0 0 30px 0;
}
.ulSponsors li a.link_mufg{
  width: 250px;
  height: auto;
  margin: 25px auto 0 auto;
}
.ulSponsors li img {
  margin: 0;
  display: block;
  width: 100%;
  height: auto;
}

#secSponsors p{
  text-align: center;
  color: #707070;
  width: 100%;
  display: block;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 767.98px) {
  #secSponsors p{
    text-align: center;
    color: #707070;
    width: 100%;
    margin: 20px 0 0 0;
  }
}
@media screen and (max-width: 767.98px) {
  .ulSponsors {
    margin: 0 auto;
    width: 60%;
    flex-wrap: wrap;
  }
  .ulSponsors li:first-child::after{
    content: "";
    display: none;
  }
  .ulSponsors li:first-child {
    border-bottom: solid 1px #231815;
  }
  .ulSponsors li {
    width: 100%;
    position: relative;
  }
  .ulSponsors li a,
  .ulSponsors li a.link_lone,
  .ulSponsors li a.link_mufg{
    width: 100%;
    height: auto;
    margin: 0 auto 20px auto;
    padding: 0;
  }
  .ulSponsors li a.link_mufg {
    width: 90% !important;
    margin: 25px auto 10px auto;
  }
}

/* Footer Area */
#footer {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
#footer .aboutSite {
  margin: 0 auto;
  padding: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #E60000;
  width: 100%;
  height: auto;
}
#footer p{
  padding: 0;
  line-height: 1.6;
  font-size: 12px;
  font-weight: 400; /* Regular */
  color: #FFF;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  #footer {
    padding: 0;
  }
  #footer .aboutSite{
    padding-top: 6vw;
  }
  #footer p{
    padding: .5em 0 0 0;
    margin: 0 auto 0.5rem auto;
    display: block;
    width: 90%;
  }
}
