@charset "UTF-8";
/* CSS Document */

/*   ------　　共通設定   ------　*/
body{
	font-size: 15px;
  font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: normal;
	color: #4c4e50;
  letter-spacing: 0.05em;
  line-height: 1.8em;
  text-align: justify;
}

img{
  max-width: 100%;
  vertical-align: bottom;
}
a{
  -webkit-backface-visibility: hidden; /* 追加 */
  backface-visibility: hidden; /* 追加 */
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

header,section{
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
section{
}
.contentWrap{
  padding-bottom: 120px;
  width: 100%;
  margin: 0 auto;
}
.inner{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

@media(max-width:768px){
  .contentWrap{
    padding-bottom: 60px;
    width: 100%;
    margin: 0 auto;
  }
  .inner{
    width: 90%;
    max-width: none;
    margin: 0 auto;
  }
}

.flexbox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* ボックス4つ並び */
.flexbox.flex4 dl{
  width: 22%;
}
/* ボックス3つ並び */
.flexbox.flex3 dl{
  width: 32%;
}

/* ボックス2つ並び */
.flexbox.flex2 dl{
  width: 45%;
}

.flexbox.flex2 dl img{
    width: 74%;
    margin: 0 13%;
}

/* ボックス1つ並び */
.flexbox.flex1 dl{
  width: 70%;
}

.flexbox.flex1 dl img{
    width: 74%;
    margin: 0 13%;
}


@media(max-width:768px){
  /* ボックス4つ並び */
  .flexbox.flex4 dl{
    width: 48%;
  }
  /* ボックス3つ並び */
  .flexbox.flex3 {
    display: block;
  }
  .flexbox.flex3 dl{
    width: 100%;
  }
   /* ボックス2つ並び */
  .flexbox.flex2 dl{
    width: 48%;
  }
  /* ボックス1つ並び */
  .flexbox.flex1 {
    display: block;
  }
  .flexbox.flex1 dl{
    width: 100%;
  }
}

/* 欧文フォント ウエイト違いで用意しています */
.english-Grotesque_medium{
font-family: english-grotesque, sans-serif;
font-weight: 500;
font-style: normal;
}
.english-Grotesque_bold{
font-family: english-grotesque, sans-serif;
font-weight: 700;
font-style: normal;
}
.english-Grotesque{
font-family: english-grotesque, sans-serif;
font-weight: 300;
font-style: normal;
}

/* 注意文 */
.notes{
  font-size: 9pt;
  margin-top: 20px;
}

/* セクションタイトル 共通
  ※違う設定がある場合はセクションごとに別途CSSを指定 */
.title{
  max-width: 80%;
  width: 760px;
  margin: 0 auto 12px;
  padding-top: 48px;
  text-align: center;
  position: relative;
  top: -48px;
}
.title .number{
  font-size: 20px;
  font-family: english-grotesque, sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
}
.title h2{
  font-size: 34px;
  font-family: english-grotesque, sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.1em;
  position: relative;
}
.title h2:after{
  content:"";
  display: block;
  height: 1px;
  width: 250px;
  margin: 20px auto 50px;
  background: #515151;
}
.title h3{
  font-size: 20px;
  letter-spacing: 0.05em;
}

@media(max-width:768px){
  .title{
    max-width: 90%;
    margin: 0 auto 12px;
    padding-top: 20px;
    text-align: center;
    position: relative;
    top: -20px;
  }
  .title .number{
    font-size: 17px;
  }
  .title h2{
    font-size: 20px;
    line-height: 1;
  }
  .title h2:after{
    content:"";
    display: block;
    height: 1px;
    width: 33%;
    margin: 20px auto 25px;
    background: #515151;
  }
  .title h3{
    font-size: 18px;
    letter-spacing: 0.05em;
  }
}

#navigation{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}
#navigation ul{
  display: inline-block;
  background-color: #fff;
}
#navigation ul li{
  width: 70px;
  cursor: pointer;
  text-align: center;
  padding: 0;
  border-top: 1px solid #515151;
}
#navigation ul li a{
  padding: 30px 0;
  display: block;
  width: 100%;
}
#navigation ul li a:hover{
  background: #515151;
}
#navigation ul li.menu-trigger{
  display: block;
  padding: 20px 0;
  border-top: 0;
  height: 70px;
  transition: 0.3s;
  background: url(../images/f_navi_menu_off.svg) center center no-repeat;
  background-size: 40%;
}
#navigation ul li.menu-trigger:hover{
  background: url(../images/f_navi_menu_on.svg) center center no-repeat #3e4042;
  background-size: 40%;
}
#navigation ul li.menu-inquiry a{
  text-indent: -9999px;
  display: block;
  height: 253px;
  background: url(../images/f_navi_inquiry_off.svg) center center no-repeat;
  background-size: 40%;

}
#navigation ul li.menu-inquiry a:hover{
  background: url(../images/f_navi_inquiry_on.svg) center center no-repeat #3e4042;
  background-size: 40%;
}
#navigation ul li.menu-try a{
  text-indent: -9999px;
  display: block;
  height: 247px;
  background: url(../images/f_navi_try_off.svg) center center no-repeat;
  background-size: 48%;
}
#navigation ul li.menu-try a:hover{
  background: url(../images/f_navi_try_on.svg) center center no-repeat #3e4042;
    background-size: 48%;
}


.menu-trigger {
  transform: translateX(0);
}
nav {
  width: 290px;
  height: 100%;
  padding: 30px;
  background-color: #fdeec7;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(290px);
  transition: all .5s;
}
nav.open {
  transform: translateZ(0);
}
nav ol{
  clear: both;
  margin-top: 50px;
}
nav ol li {
  color: #fff;
  text-align: justify;
  font-size: 14px;
  padding: 10px 5px;
  letter-spacing: -0.5px;
  border-bottom: dashed #798690 1px;
}
nav ol li:last-of-type{
  border: 0;
}
nav li  a{
  text-decoration: none;
  color: #000;
}
nav #closeNav{
  cursor: pointer;
  width: 32px;
  height: 32px;
  background: url(../images/icon_naviClose.svg) no-repeat center;
  background-size: contain;
  text-indent: -9999px;
  float: right;
}
nav #closeNav:hover{

}
#spFtBtn{
  display: none;
}
.spHead{
  display: none;
}
@media(max-width:768px){
  .spHead{
    display: block;
    background: #fff;
    padding: 2% 20%;
  }
  #navigation ul li{
    display: none;
  }
  #navigation ul li:first-of-type{
    width: 45px;
    height: 45px;
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
  }
  #navigation ul li a{
    padding: 10px ;
    display: block;
    width: 100%;
  }
  #navigation ul li.menu-trigger img{
    width: 18px;
    height: auto;
  }
  #navigation ul li.menu-trigger{
    background: url(../images/f_navi_menu_off.svg) center center no-repeat;
    background-size: 18px;
  }
  #navigation ul li.menu-trigger:hover{
    background: url(../images/f_navi_menu_on.svg) center center no-repeat #3e4042;
    background-size: 18px;
  }
  nav {
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: #fdeec7;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    transform: translate(100%);
    transition: all .5s;
  }
  nav.open {
    transform: translateZ(0);
  }
  nav ol{
    clear: both;
    margin-top: 50px;
    padding: 5% 15%;
  }
  nav ol li {
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 10px 5px;
    letter-spacing: -0.5px;
    border-bottom: dashed #798690 1px;
  }
  nav ol li:last-of-type{
    border: 0;
  }
  nav li  a{
    text-decoration: none;
    color: #000;
  }
  nav #closeNav{
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background: url(../images/icon_naviClose.svg) no-repeat center center #fdeec7;
    background-size: 12px;
  }
  nav #closeNav:hover{
    background: url(../images/icon_naviClose.svg) no-repeat center center #fff;
    background-size: 12px;
  }
  #spFtBtn{
    width: 100%;
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
  }


  #spFtBtn a{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    background-color: rgba(255,255,255,0.8);
    color: #3e4042;
    text-align: center;
    border-top: #3e4042 solid 1px;
    padding: 18px 0;
    margin: 0 auto;
    box-sizing: border-box;
  }

  #spFtBtn a:before{
    margin-right: 20px;
    content:"";
    display: block;
    width: 28px;
    height: 41px;
    background: url(../images/icn_inquiry_off.svg) no-repeat center;
    background-size: 28px 41px;
    transition: 0.1s;
  }
  #spFtBtn a:hover{
    color: #fff;
    background: #3e4042;
  }
  #spFtBtn a:hover:before{
    content:"";
    display: block;
    width: 28px;
    height: 41px;
    background: url(../images/icn_inquiry_on.svg) no-repeat center;
    background-size: 28px 41px;
  }
}


/*吹き出しの線*/
.balloon {
  position: relative;
  max-width: 400px;
  padding: 20px 8px 0;
  text-align: center;
  background-color: #fff;
  text-align: center;
  color: #000;
  border-top: 1px dotted #6b6b6b;
  margin: 25px auto 0;
}

.balloon::before {
  content: '';
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  left: 0;
  right: 0;
  top: -10px;
  margin: 0 auto;
  border-top: 1px dotted #6b6b6b;
  border-right: 1px dotted #6b6b6b;
  background-color: #fff;
  transform: rotate(-45deg);
}

.triangle{
  position: relative;
}
.triangle:before{
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 14px;
  top: 0;
  left: 0;
}
.triangle.c-white:before{
  background: url(../images/tri_white.svg) no-repeat center;
  background-size: contain;
}
.triangle.c-gray:before{
  background: url(../images/tri_gray.svg) no-repeat center;
  background-size: contain;
}
/*   ------　　ヘッダー、メインビジュアル   ------　*/
header{
}
header h1{
  position: fixed;
  top: 30px;
  left: 40px;
  z-index: 1000;
}
.mainVisual{
  width: 100%;
}
header .notice{
  color: #ededed;
  font-size: 18px;
  text-align: center;
  padding: 40px 0 70px;
  background: #556777;
  font-weight: bold;
}
header h2{
  position: absolute;
  width: 24%;
    top: 14%;
    left: 14%;
}

@media(max-width:768px){
  header h1{
    top: 10px;
    left: 10px;
  }
  header h1 img{
    width: 104px;
    height: auto;
  }
  header .notice{
    font-size: 15px;
    text-align: center;
    padding: 20px 5% 35px;
  }
  header h2{
    display: none;
  }
}


/*   ------　　section01   ------　*/
#about{
  z-index: 10;
}
#about .title{
  background: #fff;
}
#about .inner{
  width: 40%;
  min-width: 360px;
}

@media(max-width:768px){
  #about .inner{
    width: 90%;
    min-width: 0;
  }
}


/*   ------　　section02   ------　*/
#letsstudy{
  z-index: 20;
  background: #fee7d6;
}
#letsstudy .title{
  background: #fee7d6;
}
#letsstudy .contentWrap dl dt:before{
  content: "";
  display: block;
  width: 38px;
  height: 33px;
  margin: 30px auto;
  background: url(../images/icn_check.svg) no-repeat center;
  background-size: contain;
}
#letsstudy .contentWrap dl dt{
  font-size: 16px;
  text-align: center;
}
@media(max-width:768px){
  #letsstudy .contentWrap dl dt:before{
    width: 25px;
    height: 21px;
    margin: 15px auto;
    background: url(../images/icn_check.svg) no-repeat center;
    background-size: contain;
  }
  #letsstudy .contentWrap dl dt{
    font-size: 14px;
    line-height: 1.4;
  }
  #letsstudy .contentWrap dl{
    margin-bottom: 30px;
  }
}

/*   ------　　section03   ------　*/
#section03{
  z-index: 30;
}
#section03 .title{
  background: #fff;
  margin-bottom: 58px;
}
#section03 .flexbox{
  align-items: normal;
}
#section03 dl{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
#section03 dl:before{
  content:"";
  display: block;
  position: absolute;
  top: -15px;
  left: 15px;
  width: 20%;
  max-width: 60px;
  height: 30px;
}
#section03 dl:after{
  content:"";
  display: block;
  position: absolute;
  top: -19px;
  right: 10px;
  width: 50%;
  height: 38px;
}
#section03 dl dt{
  margin: 20px 0 15px;
  text-align: center;
  font-weight: bold;
}
#section03 dl dd{
  font-size: 15px;
  line-height: 1.73;
  padding: 0 5%;
}
#section03 dl dd.image{
  padding: 0;
}
#section03 dl dd.notice{
  margin-top: auto;
  padding-top: 20px;
  text-align: center;
}
#section03 dl.num01:before{
  background: url(../images/icn_num01.svg) no-repeat center left;
  background-size: contain;
}
#section03 dl.num01:after{
  background: url(../images/icn_monthly.svg) no-repeat center right;
  background-size: contain;
}
#section03 dl.num02:before{
  background: url(../images/icn_num02.svg) no-repeat center left;
  background-size: contain;
}
#section03 dl.num02:after{
  background: url(../images/icn_monthly.svg) no-repeat center right;
  background-size: contain;
}
#section03 dl.num03:before{
  background: url(../images/icn_num03.svg) no-repeat center left;
  background-size: contain;
}
#section03 dl.num03:after{
  background: url(../images/icn_firstTime.svg) no-repeat center right;
  background-size: contain;
}
#section03 dl.num04:before{
  background: url(../images/icn_num04.svg) no-repeat center left;
  background-size: contain;
}
#section03 dl.num04:after{
  background: url(../images/icn_firstTime.svg) no-repeat center right;
  background-size: contain;
}

#section03 .notice-arrowbox{
  font-family: english-grotesque, "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    position:relative;
    max-width: 339px;
    width: 100%;
    height: 68px;
    background:#556777;
    padding:10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align:center;
    color:#EDEDED;
    font-size:13px;
    font-feature-settings: "palt";
}
#section03 .notice-arrowbox span{
  font-size: 120%;
}
#section03 .notice-arrowbox:after{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    border-color: rgba(85, 103, 119, 0);
    border-top-width:13px;
    border-bottom-width:13px;
    border-left-width:13px;
    border-right-width:13px;
    margin-left: -13px;
    border-bottom-color:#556777;
    bottom:100%;
    left:50%;
}

#section03 .notice a{
  text-decoration: none;
  color:#F87145;
  transition: 0.3s;
}
#section03 .try-arrowbox{
    font-family: english-grotesque, "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    position:relative;
    max-width: 339px;
    width: 100%;
    height: 68px;
    background:#fff;
    padding:10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align:center;
    border:1px solid #F87145;
    color:#F87145;
    font-size:13px;
    font-weight: bold;
    font-feature-settings: "palt";
  transition: 0.3s;
}
#section03 .try-arrowbox div{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#section03 .try-arrowbox div:before{
  content: "";
  display: block;
  width: 25px;
  height: 21px;
  margin-right: 10px;
  background: url(../images/icn_try_off.svg) no-repeat center;
  background-size: contain;
}
#section03 .try-arrowbox:after,.try-arrowbox:before{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    bottom:100%;
    left:50%;
}
#section03 .try-arrowbox:after{
    border-color: rgba(255, 255, 255, 0);
    border-top-width:10px;
    border-bottom-width:10px;
    border-left-width:10px;
    border-right-width:10px;
    margin-left: -10px;
    border-bottom-color:#FFFFFF;
    transition: 0.3s;
}
#section03 .try-arrowbox:before{
    border-color: rgba(248, 113, 69, 0);
    border-top-width:11px;
    border-bottom-width:11px;
    border-left-width:11px;
    border-right-width:11px;
    margin-left: -11px;
    margin-bottom: 1px;
    border-bottom-color:#F87145;
}

#section03 a:hover .try-arrowbox {
  background :#F87145;
  color: #fff;
}
#section03 a:hover .try-arrowbox div:before{
  background: url(../images/icn_try_on.svg) no-repeat center;
  background-size: contain;
}

#section03 a:hover .try-arrowbox:after {
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: rgba(248, 113, 69, 0);
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 11px;
    border-right-width: 11px;
    margin-left: -11px;
    border-bottom-color: #F87145;
    bottom: 100%;
    left: 50%;
}
@media(max-width:900px){
  #section03 dl{
    width: 25%;
  }
  #section03 dl dd.image{
    padding: 0 5px;
  }
}

@media(max-width:768px){
  #section03 .title{
    margin-bottom: 30px;
  }
  #section03 .contentWrap{
    padding-bottom: 0;
  }
  #section03 .flexbox{
    align-items: normal;
    display: block;
  }
  #section03 dl{
    width: 100%;
    margin: 0 auto 20%;
  }
  #section03 dl:before{
    left: 8%;
  }
  #section03 dl:after{
    right: -2%;
  }
  #section03 dl dt{
    margin: 20px 0 15px;
    text-align: center;
    font-weight: bold;
  }
  #section03 dl dd{
    font-size: 15px;
    line-height: 1.73;
    padding: 0 5%;
  }
  #section03 dl dd.image{
    padding: 0 5%;
  }
  #section03 dl dd.notice{
    margin-top: auto;
    padding-top: 20px;
  }
  #section03 .notice-arrowbox,
  #section03 .try-arrowbox {
    max-width: none;
  }
}


/*   ------　　section04   ------　*/
#section04{
  z-index: 40;
}
#section04 .title{
  background: #fff;
}
#section04 .inner p{
    width: 40%;
    margin: 0 auto;
    min-width: 360px;
}
#section04 .inner .youtube{
  width: 100%;
  margin: 100px auto 0;
  max-width: 1180px;
}
#section04 .inner .youtube .youtube-link{
  cursor: pointer;
}
#section04 .inner .youtube .youtube-link img{
  transition: 0.8s;
}
#section04 .inner .youtube .youtube-link img:hover{
  opacity: 0.7;
}
@media(max-width:768px){
  #section04 .inner p{
      width: 90%;
      min-width: 0;
  }
  #section04 .inner .youtube{
    width: 100%;
    margin: 40px auto 0;
    max-width: none;
  }
  #section04 .inner .youtube iframe{
    width: 100%;
    height: 320px;
  }
}
/*   ------　　section05   ------　*/
#curriculum{
  z-index: 50;
  background: #ededed;
}
#curriculum .contentWrap{
  padding-bottom: 0;
}
#curriculum .title{
  background: #ededed;
}
#curriculum .map{
  margin-bottom: 250px;
}
#curriculum .map .image{
  margin-bottom: 100px;
}
#curriculum .map p{
    width: 40%;
    margin: 0 auto;
    min-width: 360px;
}

#curriculum .flexbox dl{
  background: #fff;
  padding: 7% 2% 2%;
  width: 30%;
  -webkit-box-shadow: 5px 5px 10px 0 #D1D1D1;
  box-shadow: 5px 5px 10px 0 #D1D1D1;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  text-align: center;
  margin-bottom: 150px;
}
#curriculum .flexbox dl dt{
  font-size: 16px;
  font-weight: bold;
}
#curriculum .flexbox dl dt .featuring{
  font-size: 12px;
  font-feature-settings: "palt";
}
#curriculum .flexbox dl dt.subtitle{
  font-size: 14px;
  padding: 20px 0 10px;
}
#curriculum .flexbox dl dd.detail{
  font-size: 12px;
  margin-bottom: 40px;
}
#curriculum .flexbox dl dd.detail .point{
  font-size: 14px;
  background: url(../images/sec05_box-fukidashi.svg) no-repeat top center;
  background-size: cover;
  padding: 30px 20px 15px;
  margin-bottom: 20px;
}
#curriculum .flexbox dl dd.detail p{
  text-align: justify;
}
#curriculum .flexbox dl dd.image.thumb{
  width: 70%;
  margin: 0 auto;
}
#curriculum .flexbox dl dd.wine{
  font-size: 12px;
  text-align: justify;
}
#curriculum .flexbox dl:before{
  content:"";
  display: block;
  position: absolute;
  top: -25px;
  left: 15px;
  width: 50%;
  max-width: 168px;
  height: 50px;
}
#curriculum .flexbox dl:after{
  content:"";
  display: block;
  position: absolute;
  top: -47.5px;
  right: 20px;
  width: 50%;
  max-width:82px;
  height: 95px;
}
#curriculum .flexbox dl dt.curriclum_title:after{
  content:"";
  display: block;
  width: 100%;
  height: 30px;
  margin: 10px auto 20px;
}
#curriculum dl.num01:before{
  background: url(../images/sec05_box01_num.png) no-repeat center left;
  background-size: contain;
}
#curriculum dl.num01:after{
  background: url(../images/sec05_box01_map.png) no-repeat center right;
  background-size: contain;
}
#curriculum dl.num01 dt.curriclum_title:after{
  background: url(../images/sec05_box01_icon.png) no-repeat center center;
  background-size: contain;
}

#curriculum dl.num02:before{
  background: url(../images/sec05_box02_num.png) no-repeat center left;
  background-size: contain;
}
#curriculum dl.num02:after{
  background: url(../images/sec05_box02_map.png) no-repeat center right;
  background-size: contain;
}
#curriculum dl.num02 dt.curriclum_title:after{
  background: url(../images/sec05_box02_icon.png) no-repeat center center;
  background-size: contain;
}

#curriculum dl.num03:before{
  background: url(../images/sec05_box03_num.png) no-repeat center left;
  background-size: contain;
}
#curriculum dl.num03:after{
  background: url(../images/sec05_box03_map.png) no-repeat center right;
  background-size: contain;
}
#curriculum dl.num03 dt.curriclum_title:after{
  background: url(../images/sec05_box03_icon.png) no-repeat center center;
  background-size: contain;
}

#curriculum dl.num04:before{
  background: url(../images/sec05_box04_num.png) no-repeat center left;
  background-size: contain;
}
#curriculum dl.num04:after{
  background: url(../images/sec05_box04_map.png) no-repeat center right;
  background-size: contain;
}
#curriculum dl.num04 dt.curriclum_title:after{
  background: url(../images/sec05_box04_icon.png) no-repeat center center;
  background-size: contain;
}

#curriculum dl.num05:before{
  background: url(../images/sec05_box05_num.png) no-repeat center left;
  background-size: contain;
}
#curriculum dl.num05:after{
  background: url(../images/sec05_box05_map.png) no-repeat center right;
  background-size: contain;
}
#curriculum dl.num05 dt.curriclum_title:after{
  background: url(../images/sec05_box05_icon.png) no-repeat center center;
  background-size: contain;
}
#curriculum dl.num06:before{
  background: url(../images/sec05_box06_num.png) no-repeat center left;
  background-size: contain;
}
#curriculum dl.num06:after{
  background: url(../images/sec05_box06_map.png) no-repeat center right;
  background-size: contain;
}
#curriculum dl.num06 dt.curriclum_title:after{
  background: url(../images/sec05_box06_icon.png) no-repeat center center;
  background-size: contain;
}
#curriculum dl.num07:before{
  background: url(../images/sec05_box07_num.png) no-repeat center left;
  background-size: contain;
}
#curriculum dl.num07:after{
  background: url(../images/sec05_box07_map.png) no-repeat center right;
  background-size: contain;
}
#curriculum dl.num07 dt.curriclum_title:after{
  background: url(../images/sec05_box07_icon.png) no-repeat center center;
  background-size: contain;
}
#curriculum dl.num08:before{
  background: url(../images/sec05_box08_num.png) no-repeat center left;
  background-size: contain;
}
#curriculum dl.num08:after{
  background: url(../images/sec05_box08_map.png) no-repeat center right;
  background-size: contain;
}
#curriculum dl.num08 dt.curriclum_title:after{
  background: url(../images/sec05_box08_icon.png) no-repeat center center;
  background-size: contain;
}
#curriculum dl.num09:before{
  background: url(../images/sec05_box09_num.png) no-repeat center left;
  background-size: contain;
}
#curriculum dl.num09:after{
  background: url(../images/sec05_box09_map.png) no-repeat center right;
  background-size: contain;
}
#curriculum dl.num09 dt.curriclum_title:after{
  background: url(../images/sec05_box09_icon.png) no-repeat center center;
  background-size: contain;
}
#curriculum dl.num10:before{
  background: url(../images/sec05_box10_num.png) no-repeat center left;
  background-size: contain;
}
#curriculum dl.num10:after{
  background: url(../images/sec05_box10_map.png) no-repeat center right;
  background-size: contain;
}
#curriculum dl.num10 dt.curriclum_title:after{
  background: url(../images/sec05_box10_icon.png) no-repeat center center;
  background-size: contain;
}
#curriculum dl.num11:before{
  background: url(../images/sec05_box11_num.png) no-repeat center left;
  background-size: contain;
}
#curriculum dl.num11:after{
  background: url(../images/sec05_box11_map.png) no-repeat center right;
  background-size: contain;
}
#curriculum dl.num11 dt.curriclum_title:after{
  background: url(../images/sec05_box11_icon.png) no-repeat center center;
  background-size: contain;
}
#curriculum dl.num12:before{
  background: url(../images/sec05_box12_num.png) no-repeat center left;
  background-size: contain;
}
#curriculum dl.num12:after{
  background: url(../images/sec05_box12_map.png) no-repeat center right;
  background-size: contain;
}
#curriculum dl.num12 dt.curriclum_title:after{
  background: url(../images/sec05_box12_icon.png) no-repeat center center;
  background-size: contain;
}

@media(max-width:768px){
  #curriculum .contentWrap{
    padding-bottom: 10px;
  }
  #curriculum .map{
    margin-bottom: 150px;
  }
  #curriculum .map .image{
    margin-bottom: 0;
  }
  #curriculum .map p{
      width: 100%;
      min-width: 0;
  }

  #curriculum .flexbox dl{
    width: 100%;
    background: #fff;
    padding: 15% 0 2%;
    margin-bottom: 100px;
  }
  #curriculum .flexbox dl dt .featuring{
    font-size: 15px;
  }
  #curriculum .flexbox dl dt.curriclum_title{
    padding: 0 5%;
  }
  #curriculum .flexbox dl dt.subtitle{
    font-size: 16px;
    padding: 20px 0 10px;
  }
  #curriculum .flexbox dl dd.detail{
    font-size: 13px;
    margin-bottom: 20px;
  }
  #curriculum .flexbox dl dd.detail .point{
    font-size: 14px;
    background: url(../images/sec05_box-fukidashi.svg) no-repeat top center;
    background-size: cover;
    padding: 30px 20px 15px;
    margin-bottom: 20px;
  }
  #curriculum .flexbox dl dd.detail p{
    text-align: justify;
    padding: 0 5%;
    display: inline-block;
  }
  #curriculum .flexbox dl dd.wine{
    font-size: 14px;
    padding: 0 5% 5%;
  }
  #curriculum .flexbox dl:before{
    top: -20px;
    left: 5%;
    width: 50%;
    max-width: none;
    height: 40px;
  }
  #curriculum .flexbox dl:after{
    content:"";
    display: block;
    position: absolute;
    top: -37px;
    right: 5%;
    width: 50%;
    max-width:82px;
    height: 74px;
  }
  #curriculum .flexbox dl dt.curriclum_title:after{
    margin: 20px auto;
  }
}

/*   ------　　section06   ------　*/
#waytoenjoy{
  z-index: 60;
  background: #fdeec7;
}
#waytoenjoy .title{
  background: #fdeec7;
}
#waytoenjoy .flexbox dl{
  position: relative;
  width: 28%;
}
#waytoenjoy dl dt{
  margin: 30px 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
#waytoenjoy dl dt p{
  margin: 10px 0 0;
  font-size: 16px;
}
#waytoenjoy dl dd{
  font-size: 15px;
  line-height: 1.73;
}
#waytoenjoy .flexbox dl:before{
  content:"";
  display: block;
  position: absolute;
  top: -17px;
  left: 0;
  width: 100%;
  height: 34px;
}
#waytoenjoy dl.num01:before{
  background: url(../images/icn_num01.svg) no-repeat center center;
  background-size: contain;
}
#waytoenjoy dl.num02:before{
  background: url(../images/icn_num02.svg) no-repeat center center;
  background-size: contain;
}
#waytoenjoy dl.num03:before{
  background: url(../images/icn_num03.svg) no-repeat center center;
  background-size: contain;
}

@media(max-width:768px){
  #waytoenjoy .flexbox dl{
    margin-bottom: 40px;
    width: 100%;
  }
  #waytoenjoy .flexbox dl:last-of-type{
    margin-bottom: 0;
  }
}

/*   ------　　section07   ------　*/
#uservoice{
  z-index: 70;
  background: #ededed;
}
#uservoice .title{
  background: #ededed;
}
#uservoice .flex3 dl{
    margin: 0 0.1%;
    background: #fff;
    padding: 30px;
    font-size: 15px;
    line-height: 1.75;
    min-height: 435px;
}
#uservoice .flex3 dl dt{
  width: 50%;
  margin: 0 auto;
}
#uservoice .flex3 dl dd{
  text-align: justify;
}
#uservoice .flex3 dl dd p{
  text-align: right;
  margin-top: 10px;
  font-weight: bold;
}
#uservoice .contentWrap.student{
  padding-bottom: 0;
}
#uservoice .contentWrap.student:after{
  content: "";
  display: block;
  margin: 80px auto 70px;
  max-width: 50%;
  width: 240px;
  height: 1px;
  border-top:1px dotted #6b6b6b;
}
#uservoice .contentWrap.student .flexbox{
  padding-bottom: 30px;
}
#uservoice .contentWrap.student .slick-prev{
  left: -15px;
}
#uservoice .contentWrap.student .slick-next{
  right: -15px;
}
#uservoice .contentWrap.student .slick-prev.slick-arrow,
#uservoice .contentWrap.student .slick-next.slick-arrow{
  width: 40px;
  height: 40px;
  z-index: 1000;
}

#uservoice .contentWrap.sommelier dl {
  width: 23%;
  background: url(../images/sec07_voice_bg.svg) no-repeat top 360px center;
  background-size: cover;
}
#uservoice .contentWrap.sommelier dl dt {
  width: 82%;
  margin:0 auto;
}
#uservoice .contentWrap.sommelier dl dt .name{
  font-family: english-grotesque, "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  letter-spacing: 0;
  max-width: 100%;
  font-weight: bold;
  margin: -5% auto 5%;
}
#uservoice .contentWrap.sommelier dl dt .name span{
  display: inline-block;
  font-size: 15px;
  color: #ededed;
  background: #556777;
  padding: 0px 10px;
}
#uservoice .contentWrap.sommelier dl dt .name span:last-child{
  padding: 0 5px;
  margin-top: 5px;
  font-size: 12px;
}
#uservoice .contentWrap.sommelier dl{
}
#uservoice .contentWrap.sommelier dl dd strong{
  display: block;
  margin-bottom: 1em;
}
#uservoice .contentWrap.sommelier dl dd{
  background: url(../images/sec07_voice_bg.svg) no-repeat center top;
  background-size: cover;
  font-size: 14px;
  line-height: 1.75;
  padding: 14.4% 9% 9%;
}
@media(max-width:1134px){
  #uservoice .flex3 dl{
      min-height: 460px;
  }
}
@media(max-width:900px){
  #uservoice .flex3 dl{
      min-height: 500px;
  }
}
@media(max-width:768px){
  #uservoice .flex3 dl{
      padding: 15px;
      min-height: 430px;
  }
  #uservoice .contentWrap.sommelier dl dt {
    width: 82%;
    margin:0 auto;
  }
  #uservoice .contentWrap.sommelier dl dt .name{
    text-align: center;
    max-width: 80%;
    margin: -5% auto 5%;
  }
#uservoice .contentWrap.sommelier dl {
    background: none;
    width: 100%;
    margin-bottom: 40px;
  }
}
/*   ------　　section08   ------　*/
#section08{
  z-index: 80;
  color: #ededed;
  background: url(../images/sec08_bg.png) no-repeat center top fixed;
  background-size: 2000px;
}
#section08 .title{
  background: url(../images/sec08_bg.png) no-repeat center top fixed;
  background-size: 2000px;
}
#section08 .title h2:after{
  background: #fff;
}
#section08 .contentWrap .inner dl{
  flex-grow: 1;
  padding: 0 3% 2%;
  border-right: dashed #798690 1px;
}
#section08 .contentWrap .inner dl dt{
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}
#section08 .flexbox dl:before{
  content:"";
  display: block;
  width: 100%;
  height: 34px;
  margin-bottom: 20px;
}
#section08 dl.num01:before{
  background: url(../images/icn_num01_b.svg) no-repeat center center;
  background-size: contain;
}
#section08 dl.num02:before{
  background: url(../images/icn_num02_b.svg) no-repeat center center;
  background-size: contain;
}
#section08 dl.num03:before{
  background: url(../images/icn_num03_b.svg) no-repeat center center;
  background-size: contain;
}

@media(max-width:768px){
  #section08{
    background: url(../images/sec08_bg_sp.png) no-repeat center top fixed;
    background-size: cover;
  }
  #section08 .title{
    background: url(../images/sec08_bg_sp.png) no-repeat center top fixed;
    background-size: cover;
  }
  #section08 .title h2:after{
    background: #fff;
  }
  #section08 .contentWrap .inner dl{
    margin-bottom: 20px;
    padding: 0 5%;
    border-right: 0;
  }
    #section08 .contentWrap .inner dl dd:last-of-type{
        padding-bottom: 20px;
    }
  #section08 .contentWrap .inner dl:after{
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    margin: 0 auto;
    border-top: dashed #798690 1px;
  }
  #section08 .contentWrap .inner dl:last-of-type:after{
    content: none;
  }
  #section08 .contentWrap .inner dl dt{
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
  }
  #section08 .flexbox dl:before{
    content:"";
    display: block;
    width: 100%;
    height: 34px;
    margin-bottom: 20px;
  }
}

/*   ------　　section09   ------　*/
#approach{
  z-index: 90;
}
#approach .title{
  background: #fff;
}
#approach .inner{
  width: 40%;
  min-width: 360px;
}

@media(max-width:768px){
  #approach .inner{
    width: 90%;
    min-width: 0;
  }
}

/*   ------　　section10   ------　*/
#question-answer{
  z-index: 90;
  background: #ededed;
}
#question-answer .title{
  background: #ededed;
}
#question-answer dl{
  padding: 0 2%;
  background: #fff;
  margin: 0 auto 1%;
  max-width: 900px;
  width: 75%;
  min-width: 400px;
}
#question-answer dl dt{
  position: relative;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  padding: 2% 44px 2% 0;
  transition: 0.3s;
}
#question-answer dl dt:after{
  display: block;
  content:"";
  width: 34px;
  height: 34px;
  background: url(../images/icn_open.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -17px;
}
#question-answer dl dt:hover{
  opacity: 0.6;
}
#question-answer dl.active dt:after{
  background: url(../images/icn_close.svg) no-repeat center;
  background-size: cover;
}
#question-answer dl dd{
  border-top: 1px solid #b7b7b7;
  font-size: 17px;
  display: none;
  padding: 2% 0;
  line-height: 1.7;
}
#question-answer dl.open dd{
  display: block;
}
@media(max-width:768px){
  #question-answer dl{
    width: 100%;
    min-width: 0;
    padding: 0 5%;
  }
  #question-answer dl dt{
    font-size: 16px;
    line-height: 1.68;
    font-weight: bold;
    padding: 5% 30px 2% 2%;
    transition: 0.3s;
  }
  #question-answer dl dt:hover{
    opacity: 0.6
  }
  #question-answer dl dt:after{
    display: block;
    content:"";
    width: 25px;
    height: 25px;
    background: url(../images/icn_open.svg) no-repeat center;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -17px;
  }
  #question-answer dl.active dt:after{
    background: url(../images/icn_close.svg) no-repeat center;
    background-size: cover;
  }
  #question-answer dl dd{
    font-size: 14px;
    padding: 5% 2%;
  }
}

/*   ------　　section11   ------　*/
#orderform{
    z-index: 100;
    background-color: #FFF;
}
#orderform .title{
  background: #fff;
}
#orderform .inner p{
  display: block;
  margin: 0 auto 30px;
  width: 40%;
  min-width: 360px;
}
#orderform h4{
    font-size: 20px;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 30px;
}
#orderform .member{
  padding: 80px 0;
  margin-bottom: 80px;
  background: #f4f4f4;
}
@media(max-width:768px){
  #orderform .inner p{
    width: 90%;
    min-width: 0;
  }
}

/*   ------　　sectionInstagram   ------　*/
#sectionInstagram{
  z-index: 90;
}
#sectionInstagram .title{
  background: #fff;
}
#sectionInstagram .title h2:after{
  margin-bottom: 40px;
}
#sectionInstagram .title h3:before{
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 40px;
  background: url(../images/secInsta_icon.svg) no-repeat;
}
#sectionInstagram .inner p{
  width: 40%;
  min-width: 360px;
  display: block;
  margin: 0 auto 60px;
}
#sectionInstagram .inner .instagramFeed{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#sectionInstagram .inner .instagramFeed dl{
  border: #8e8e8e solid 1px;
}
#sectionInstagram .inner .instagramFeed dl dt{
  padding: 3%;
}
#sectionInstagram .inner .instagramFeed dl dd{
  font-size: 14px;
  padding: 2% 3% 4%;
  line-height: 1.78;
}
#sectionInstagram .inner .instagramFeed dl dd.date{
  font-family: english-grotesque, sans-serif;
  font-weight: 300;
  font-style: normal;
  text-align: right;
  padding: 1% 3%;
  background: #ededed;
  border-top: #8e8e8e solid 1px;
}
#sectionInstagram .inner a{
  display: block;
  border: 1px solid #3e4042;
  font-size: 17px;
  letter-spacing: 0.05em;
  padding: 20px;
  width: 50%;
  max-width: 280px;
  text-align: center;
  text-decoration: none;
  color: #4c4e50;
  margin: 60px auto 0;

}
#sectionInstagram .inner a:hover{
  background: #3e4042;
  color: #fff;
}

@media(max-width:768px){
  #sectionInstagram .inner p{
    width: 90%;
    min-width: 0;
  }
}

/*   ------   CV   ------　*/
#cv{
  background: url(../images/cv_bg.png) no-repeat center center fixed;
  background-size: cover;
  padding: 70px 0 0;
  text-align: center;
}
#cv h2{
  padding: 20px 0 30px;
}
#cv h3{
  font-size: 17px;
  font-weight: bold;
}
#cv p{
  margin-bottom: 20px;
  font-weight: bold;
}
#cv a{
    width: 50%;
    max-width: 565px;
    color: #3e4042;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: rgba(255,255,255,0.8);
    border: #3e4042 solid 1px;
    height: 80px;
    margin: 0 auto;
    box-sizing: border-box;
}
#cv a:before{
  margin-right: 20px;
  content:"";
  display: block;
  width: 28px;
  height: 41px;
  background: url(../images/icn_inquiry_off.svg) no-repeat center;
  background-size: 28px 41px;
  transition: 0.1s;
}
#cv a:hover{
  color: #fff;
  background: #3e4042;
}
#cv a:hover:before{
  content:"";
  display: block;
  width: 28px;
  height: 41px;
  background: url(../images/icn_inquiry_on.svg) no-repeat center;
  background-size: 28px 41px;
}
@media screen and (max-width: 768px){
  #cv{
    background: url(../images/cv_bg_sp.png) no-repeat center center fixed;
    background-size: cover;
    padding: 35px 0 0;
  }
  #cv a{
      width: 100%;
      max-width: none;
      padding: 10px 0;
      margin: 0 auto;
      box-sizing: border-box;
  }
}

iframe#egg_form {
    padding: 0 0 0 0;
    border: 0;
    width: 800px;
    overflow: hidden!important;
    overflow-x: hidden!important;
    overflow-y: hidden!important;
}
#orderform iframe {
    margin: 0px auto;
    width: 100% !important;
    display: block;
    height: 1853px;
}
#orderform .inner > div{
  text-align: center;
}
@media screen and (max-width: 768px){
  #orderform iframe {
      width: 100% !important;
      margin: 0 auto;
  }
}

/*
.iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  border:2px solid #ccc;
}
.iframe-wrap iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:none;
    display:block;
}*/

#goTop{
  opacity: 0;
  transition: 0.3s;
  text-decoration: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  color: #fff;
  background: #3e4042;
  border: 1px solid #3e4042;
  line-height: 50px;
  position: fixed;
  bottom: 2%;
  text-align: center;
  right: 2%;
  z-index: 1000;
}
#goTop:hover{
  color: #4c4e50;
  background: #fff;
}

@media screen and (max-width: 768px){
  #goTop{
    display: none;
  }
}

/* SP/PC */
.sp{
  display: none;
}
@media(max-width:768px){
  .pc{
    display: none !important;
  }
  .sp{
    display: block;
  }
}

/*20211015 追加*/
#ftFixedBtn{
  width: 100%;
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
}
#ftFixedBtn a{
  width: 100%;
  display: block;
  color: #3e4042;
  background:#fff;
  text-align: center;
  border-top: #3e4042 solid 1px;
  padding: 14px 0;
  margin: 0 auto;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}
#ftFixedBtn a:hover{
  background:#3e4042;
  color: #fff;
}
#curriculum .flexbox dl dd.image.youtube-link{
  cursor: pointer;
  position: relative;
  transition: 0.4s;
}
#curriculum .flexbox dl dd.image.youtube-link:hover{
  opacity: 0.8;
}
#curriculum .flexbox dl dd.image.youtube-link:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width:100%;
  height: 100%;
  background-color: rgba(255,255,255,0.2);
  background-image: url(../images/icon_play.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16%;
}


/*20211018 追加*/

/*   ------　　section_tit   ------　*/
#section_tit{
  z-index: 40;
}
#section_tit .title{
    max-width: 80%;
    width: 760px;
    margin: 0 auto 0px;
    /* padding-top: 48px; */
    text-align: center;
    position: relative;
    top: -48px;
}
#section_tit .title h2:after {
    content: "";
    display: block;
    height: 1px;
    width: 250px;
    margin: 20px auto 0px;
    background: #515151;
}

#ftFixedBtn_02{
  width: 100%;
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
}
#ftFixedBtn_02 a{
  width: 100%;
  display: block;
  color: #3e4042;
  background:#fff;
  text-align: center;
  border-top: #3e4042 solid 1px;
  padding: 12px 0;
  margin: 0 auto;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
}
#ftFixedBtn_02 a:hover{
  background:#3e4042;
  color: #fff;
}

/* モーダルCSS */
.openModal{
  cursor: pointer;
}
.modalArea {
  display: none;
  position: fixed;
  z-index: 1000; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 90%;
  max-width: 640px;
  padding: 10px 30px;
}
.closeModal {
  position: absolute;
  top: -1rem;
  right: 0;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
}


/*20211103 追加*/


/*   ------　　s_offer   ------　*/
#s_offer{
  z-index: 20;
  background: #fee7d6;
}
#s_offer .title{
  background: #fee7d6;
}
#s_offer .contentWrap dl dt:before{
  content: "";
  display: block;
  width: 38px;
  height: 33px;
  margin: 30px auto;
  background: url(../images/icn_check.svg) no-repeat center;
  background-size: contain;
}
#s_offer .contentWrap dl dt{
  font-size: 16px;
  text-align: center;
}
@media(max-width:768px){
  #s_offer .contentWrap dl dt:before{
    width: 25px;
    height: 21px;
    margin: 15px auto;
    background: url(../images/icn_check.svg) no-repeat center;
    background-size: contain;
  }
  #s_offer .contentWrap dl dt{
    font-size: 14px;
    line-height: 1.4;
  }
  #s_offer .contentWrap dl{
    margin-bottom: 30px;
  }
}
#present .present-list > dl {
    margin-bottom: 14px;
}
/* ==========================
   特典エリア キャプション調整
========================== */

#present .inner.flexbox.flex4 > dl {
    font-size: 14px;     /* PC：-1〜-2pt程度 */
    line-height: 1.5;    /* 少し行間を詰める */
}

@media screen and (max-width: 767px) {
    #present .inner.flexbox.flex4 > dl {
        font-size: 13px; /* SP：読みやすさを保ちつつ少し小さく */
        line-height: 1.35;
    }
}
