/*共通*/
html{
  width: 100%;
  scroll-behavior: smooth;
}
body{
  font-family: YakuHanJP, helvetica, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, Hiragino Sans, arial, メイリオ, sans-serif;
  font-style: normal;
  font-weight: 300;
  margin:0 auto;
  text-align: center;
  background:#FAF7F0;
  color:#444;
}
main{
  overflow: hidden;
}
a, ul{
  list-style: none;
  text-decoration: none;
}
a{
  font-weight: 600;
}
p{
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: 0.64px;
  text-align: left;
}
section{
  padding: 100px 0;
  margin: -100px auto;
}
section h2{
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 4px;
  padding-bottom: 60px;
}
.wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.inner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sp{
  display: none;
}
.apply-button{
  border-radius: 39px;
  background: #FF5176;
  padding: 16px;
  transition: all .3s ease;
  color:#fff;
}
.apply-button:hover{
  box-shadow: 0 8px 24px 0 rgba(255,81,118,.5);
}
.apply-button a{
  color:#fff;
  font-weight: 600;
}
.contact-button{
  border-radius: 39px;
  background: #FFFFFF;
  padding: 16px;
  transition: all .3s ease;
  color:#00807A;
}
.contact-button:hover{
  box-shadow: 0 8px 24px 0 rgba(57,135,129,.5);
}
.contact-button a{
  color:#00807A;
  font-weight: 600;
}
.annotation{
  color: #888;
  font-size: 13px;
  letter-spacing: normal;
  padding-top: 8px;
}
.asterisk{
  color:#888888;
  font-size: 13px;
  font-weight: 300;
}
.red-text{
  color: #FF5176;
}
.link-green-text{
  color: #00807A;
  font-weight: 600;
  cursor:pointer;
}
.link-green-text:hover{
  text-decoration: underline;
}
.link-green-text-thin{
  color: #00807A;
  font-weight: 400;
  font-size: 14px;
  cursor:pointer;
}
.link-green-text-thin:hover{
  text-decoration: underline;
}
.link-green-text-access{
  color: #00807A;
  font-weight: 400;
  font-size: 12px;
  cursor:pointer;
}
.link-green-text-access:hover{
  text-decoration: underline;
}
.link-disable-text-thin{
  color: #888888;
  font-weight: 400;
  font-size: 14px;
}
.font-bold{
  font-weight: 600;
}
.white-btn{
  background: #fff;
  border-radius: 32px;
  padding: 16px 32px;
  color: #00807A;
  transition: all .3s ease;
}
.white-btn:hover{
  box-shadow: 0 1px 1px 0 rgba(0,0,0,.04), 0 8px 32px 0 rgba(0,0,0,.16);
}
@media screen and (max-width: 768px) {
  section{
    margin: 0 auto;
    padding: 0;
  }
  section h2{
    font-size: 22px;
    padding-bottom: 24px;
    line-height: 1.5;
    padding: 0 16px 24px;
  }
  .wrapper {
    display: block;
  }
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  .arrow{
    transform: rotate( 90deg );
  }
  .annotation{
    font-size: 12px;
    text-align: left;
  }
}
/*共通*/


/*header*/
.nav-header{
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 8px;
}
.nh-wrapper{
  display: flex;
  justify-content: space-between;
  background: #FFF;
  width: 100%;
  max-width: 1280px;
  padding: 24px 40px;
  border-radius: 30px;
  border: 8px solid #FAF7F0;
  transition: 0.2s;
  opacity: 0;
  inset: 0;
  margin: 0 auto;
}
.nh-menu {
  display: flex;
  width: 80%;
  justify-content: flex-end;
}
.nh-menu-button {
  margin-left: 3%;
}
.nh-logo {
  width: 20%;
}
.nh-logo img {
  width: 100%;
}
.nh-menu-items{
  display: flex;
  align-items: center;
  gap: 32px;
}
.nh-menu-item a{
  font-feature-settings: 'clig' off, 'liga' off;
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 768px) {
  .nav-header .wrapper.nh-wrapper {
    display: flex;
  }
  .nh-wrapper {
    padding: 12px 16px;
    border: 4px solid #FAF7F0;
  }
  .nh-logo {
    width: 100%;
    display: grid;
  }
  .nh-logo img {
    max-width: 180px;
  }
  .nh-menu {
    width: 100%;
  }
  .nh-menu-items{
    display: none;
  }
  .nh-menu-button {
    margin-left: 0;
  }
  .nh-menu-button .apply-button{
    font-size: 14px;
    padding: 12px 28px;
  }
}
/*header*/


/*key-visual*/
.key-visual{
  display: inline-grid;
  justify-items: end;
  background: url(https://cdn.jm-school.jp/assets/top/key-visual-923d7e2d7e18e9f957ca2d1d3ac06422a155a8c91c8a1e5ee199ab66947dcbc9.webp);
  background-size: cover;
  width: 100%;
  max-width: 1400px;
  height: 770px;
  padding:0 40px;
  margin: 28px auto 0;
  border-radius: 50px;
}
.kv-inner{
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: 57%;
  margin-top: 6%;
}
.kv-copy-container {
  display: contents;
}
.kv-copy img{
  width: 100%;
}
.key-visual .apply-button{
  padding: 16px 32px;
  margin-left: 120px;
}
.banner{
  padding: 20px;
  border-radius: 20px 0 0 20px;
  position: absolute;
  background: url(https://cdn.jm-school.jp/assets/top/banner-bg-89cee98b0df7c6593e4e686305cc60f287f246a33527e5d7052ed8ba069b1345.webp), lightgray 50% / cover no-repeat;
  background-size:580px;
  top: 570px;
  right: 0;
  color: #fff;
  text-align: left;
  transition: all .3s ease;
}
.banner:hover{
  box-shadow: 0 8px 24px 0 rgba(255,81,118,.5);
}
.banner .inner{
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.banner .banner-img{
  background: #fff;
  border-radius: 20px;
  margin-right: 20px;
}
.banner .banner-img img{
  width: 100%;
  max-width: 190px;
  padding: 16px;
}
.banner-copy{
  padding-right:32px;
}
.banner h3{
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 400;
}
.banner p{
  padding-top:8px;
}
.banner .annotation{
  color:#fff;
  padding-top: 0;
  text-align: left;
  font-size: 14px;
  margin-top: 8px;
  letter-spacing: 0.05rem;
}
.banner .arrow{
  transform: rotate( 90deg );
}
.banner .arrow img{
  width: 100%;
  max-width: 12px;
}
@media screen and (max-width: 768px) {
  .key-visual{
    margin:0;
    padding: 0 0 60px 0;
    height: auto;
    background: url(https://cdn.jm-school.jp/assets/top/key-visual-sp-cef3eec26347aac5b1225bd01261d543d97d8aadc2f5bc2045c84d25f2994696.webp), white 100% / cover no-repeat;
    border-radius: 0;
    background-size: contain;
  }
  .key-visual .kv-inner{
    width: 100%;
    background: #fff;
    margin-top: 70%;
    border-radius: 30px 30px 0 0;
  }
  
  .kv-copy-container{
    padding: 40px 32px 0;
    display: inline-grid;
    gap: 28px;
    margin: 0 auto;
  }
  .kv-copy.sp {
    width: 100%;
    margin: 0 auto;
  }
  .kv-copy img {
    width: 100%;
    max-width: 370px;
  }
  .key-visual .apply-button {
    margin: 0 auto 24px;
  }
  .banner{
    position: static;
    width: 100%;
    border-radius: 20px;
    padding: 16px;
  }
  .banner .wrapper{
    display: table-cell;
    vertical-align: middle;
  }
  .banner .banner-img{
    margin: 0;
  }
  .banner .banner-img img{
    max-width: 250px;
    padding: 12px;
    margin: 0;
  }
  .banner-copy{
    text-align: left;
    padding-right: 0;
    line-height: 135%;
  }
  .banner h3{
    font-size: 16px;
    letter-spacing: 1px;
  }
  .banner p{
    font-size: 13px;
    line-height: 1.5;
  }
  .banner .annotation{
    font-size: 12px;
    margin-top: 2px;
  }
}
/*key-visual*/

/* message */
#message{
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: -60px auto;
  padding: 60px 60px 32px;
  gap: 104px;
  background:#fff;
  border-radius: 30px;
}
#message h2{
  font-size: 32px;
  color: #39BFB9;
  font-weight: 400;
  letter-spacing: 4px;
  padding-bottom: 32px;
}
#message p{
  line-height: 170%;
  letter-spacing: 0.7px;
  font-size: 18px;
  padding-bottom: 16px;
}
#message .dot01 img{
  width: 170px;
  position: absolute;
  bottom: -50px;
  right: -90px;
}
#message .dot02 img{
  width: 96px;
  position: absolute;
  left: -20px;
}
@media screen and (max-width: 768px) {
  #message{
    overflow: hidden;
    border-radius: 0;
    padding: 40px 32px;
  }
  #message-inner{
    background: #FAF7F0;
    border-radius: 20px;
    padding: 32px 24px 16px;
  }
  #message h2{
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 1.7;
    padding: 0 0 20px 0;
  }
  #message p{
    font-size: 14px;
    line-height: 2.1;
  }
  #message .dot01 img{
    width: 100px;
    bottom: 10px;
    right: -20px;
  }
  #message .dot02 img{
    width: 80px;
    bottom: 10px;
    right: 0;
  }
}
/* message */

/* care-worker */
.care-worker{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1024px;
  padding: 32px 40px;
  justify-content: center;
  align-items: center;
  gap: 32px;
  border-radius: 30px;
  border: 4px solid #FFF;
  margin: 80px auto 100px;
}
.care-worker h3{
  width: 264px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2px;
}
.care-worker p{
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 0.7px;
  text-align: left;
  padding-left: 32px;
}
@media screen and (max-width: 768px) {
  .care-worker{
    margin: 60px auto;
    padding: 40px;
    border-radius: 0 0 30px 30px;
  }
  .care-worker h3{
    width: 100%;
    letter-spacing: 2px;
    padding-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
  }
  .care-worker p{
    line-height: 1.7;
    padding-left: 0;
    font-size: 14px;
  }
}
/* care-worker */

/* feature */
#feature .wrapper{
  max-width: 1024px;
  gap: 20px;
  display: flex;
  align-items: normal;
}
#feature .inner{
  display: table-cell;
  position: relative;
  padding: 40px 20px;
  gap: 24px;
  flex: 1 0 0;
  border-radius: 30px;
  background: #FFF;
}
#feature .feature-number{
  width: 36px;
  position: absolute;
  top: -16px;
  left: -10px;
}
#feature img{
  width: 100%;
  max-width: 260px;
}
#feature .feature-number img{
  width: 36px;
}
#feature h3{
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 4px;
  padding-bottom: 16px;
  font-weight: 600;
}
#feature > .inner > .annotation {
  padding-top: 8px;
}
@media screen and (max-width: 768px) {
  #feature .wrapper {
      display: grid;
      padding: 0 24px;
  }
  #feature img {
    max-width: 200px;
  }
  #feature h3{
    font-size: 20px;
    letter-spacing: 2px;
  }
  #feature p{
    font-size: 14px;
  }
  #feature .annotation{
    font-size: 12px;
    text-align: left;
  }
}
/* feature */

/* application-flow */
#application-flow{
  max-width: 1024px;
}
#application-flow .wrapper{
  gap:16px;
  margin: 0 auto;
}
.application-flow-inner{
  gap:16px;
  width: 19%;
}
#application-flow img{
  width: 100%;
  max-width: 160px;
}
#application-flow .arrow img{
  max-width: 12px;
}
#application-flow p{
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  padding-top: 16px;
}
#application-flow .annotation{
  font-size: 12px;
  font-weight: 300;
  text-align: right;
}

#application-flow .balloon1 {
  position: relative;
  display: inline-block;
  padding: 8px;
  min-width: 120px;
  max-width: 100%;
  color: #FF5176;
  font-size: 16px;
  background: #FFEFF3;
  border: solid 2px #FF5176;
  box-sizing: border-box;
  border-radius: 30px;
}

#application-flow .balloon1:before {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 15px solid #FFEFF3;
  z-index: 1;
}

#application-flow .balloon1:after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 50%;
  margin-left: -12px;
  border: 9px solid transparent;
  border-top: 10px solid #FF5176;
  z-index: 0;
}

#application-flow .balloon1 p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #application-flow {
    padding: 60px 16px 0;
  }
  .application-flow-inner {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  #application-flow p{
    width: 60%;
  }
  #application-flow .annotation {
    width: 100%;
    text-align: left;
    padding: 0;
  }
  #application-flow .balloon2 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 8px 32px;
    min-width: 120px;
    width: 100%;
    color: #FF5176;
    font-size: 14px;
    background: #FFEFF3;
    border: solid 2px #FF5176;
    box-sizing: border-box;
    border-radius: 20px;
  }
  
  #application-flow .balloon2:before {
    content: "";
    position: absolute;
    top: -24px;
    left: 50%;
    margin-left: -17px;
    border: 14px solid transparent;
    border-bottom: 11px solid #FFEFF3;
    z-index: 2;
  }
  
  #application-flow .balloon2:after {
    content: "";
    position: absolute;
    top: -27px;
    left: 50%;
    margin-left: -17px;
    border: 14px solid transparent;
    border-bottom: 12px solid #FF5176;
    z-index: 1;
  }
  
  #application-flow .balloon2 p {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }
}
/* application-flow */

/* capter-white */
  @media screen and (max-width: 768px) {
    .chapter-white {
      background-color: #FFF;
      border-radius: 30px;
      margin: 60px 0;
    }
  }

/* learning-flow{ */
#learning-flow{
  max-width: 1024px;
  border-radius: 30px;
}
#learning-flow .wrapper{
  display: flex;
  gap: 32px;
  flex-direction: column;
  background-color:#FFF;
  border-radius: 30px;
  padding: 40px 32px;
}
.flow-training {
  display: grid;
  gap: 20px;
  width: 100%;
}
.flow-training p{
  font-size: 15px;
  line-height: 160%;
  font-style: normal;
}
.flow-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.flow-title h3 {
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.flow-inner {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
}
.flow-inner h4{
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding-bottom: 8px;
}
.flow-period{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border-radius: 64px;
  background: #FFF;
  text-align: center;
  font-size: 15px;
  font-style: normal;
}
.flow-period > .annotation{
  padding-top: 0;
  margin-left: 4px;
}
.flow-first{
  display: grid;
  padding: 16px;
  gap: 8px;
  border-radius: 30px;
  background: #EBF9F8;
}
.flow-first-inner{
  display: flex;
  gap: 16px
}
.flow-first-inner > .home-study{
  width: 250px;
}
.flow-first-inner > .schooling{
  width: 300px;
}
.schooling h4 > span{
  font-size: 14px;
}
.schooling > .annotation{
  font-size: 13px;
  padding-top: 4px;
}
.flow-second{
  width: 280px;
  max-height: 110px;
  padding: 16px;
  border-radius: 30px;
  background: #FFF7E6;
}
  .flow-inner .arrow img{
    max-width: 18px;
  }
@media screen and (max-width: 768px) {
#learning-flow{
  border-radius: 30px;
  padding: 40px 16px
}
#learning-flow .wrapper{
  display: flex;
  gap: 32px;
  flex-direction: column;
  padding: 16px 0;
}
.flow-title {
  width: 100%;
}
.flow-inner {
  grid-auto-flow: row;
  gap: 16px;
}
.flow-inner h4{
  text-align: left;
}
.flow-period{
  flex-direction: column;
}
.flow-period > .annotation{
  margin-left: 0;
}
.flow-first{
  gap: 16px;
  padding: 32px 16px;
}
.flow-first-inner{
  flex-direction: column;
  gap: 20px
}
.flow-first-inner > .home-study, .flow-first-inner > .schooling{
  width: 100%;
}
.schooling > .annotation{
  font-size: 12px;
}
.flow-second{
  width: 100%;
  max-height: inherit;
  padding: 32px 16px;
}
.flow-inner .arrow img{
    max-width: 12px;
  }
}
/* learning-flow{ */

/* campaign */
#campaign{
  max-width: 1024px;
  margin-bottom: 100px;
}
#campaign .wrapper{
  gap: 16px;
  align-items: normal;
}
#campaign .inner{
  padding: 0 16px 28px;
  border-radius: 30px;
  background:  #FFF;
  gap: 28px;
  position: relative;
}
#campaign .dot03 img{
  width: 206px;
  position: absolute;
  top: -30px;
  right: 40px;
}
#campaign .dot04 img{
  width: 170px;
  position: absolute;
  top: -30px;
  left: 80px;
}
#campaign h3{
  color: var(--Important, #FF5176);
  font-size: 16px;
  letter-spacing: 0.64px;
  line-height: 1.7;
}
#campaign img{
  max-width: 360px;
}
.campaign_inner{
  position: relative;
  display: table;
  width: 33%;
  padding: 24px 24px 16px;
  border-radius: 20px;
  background: #FFEFF3;
}
#campaign .number{
  position: absolute;
  top: -12px;
  left: 0;
}
#campaign .number img{
  max-width: 26px;
}
.campaign_terms{
  display:table-cell;
  vertical-align:middle;
}
#campaign p{
  text-align: center;
  line-height: 1.5;
}
#campaign .wrapper{
  margin-right: 0;
}
#campaign .annotation{
  text-align: right;
  padding: 0;
  line-height: 170%;
}
@media screen and (max-width: 768px) {
  #campaign{
    background: #FFEFF3;
    padding: 40px 16px;
    border-radius: 30px;
  }
  #campaign .wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  #campaign .inner{
    padding: 24px 16px;
  }
  .campaign_inner {
    width: 100%;
    padding: 16px 24px;
  }
  #campaign .dot03 , .dot04{
    display: none;
  }
  #campaign img {
    max-width: 310px;
  }
  #campaign h2{
    color:  #FF5176;
  }
  #campaign p{
    font-size: 14px;
  }
  #campaign .campaign_annotation{
    width: 100%;
    margin: 0 auto;
  }
  #campaign .annotation {
    text-align: left;
    padding: 0;
    font-size: 12px;
  }
}
/* campaign */

/* detail */
#detail{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFF;
  max-width: 1024px;
  border-radius: 50px;
  padding: 80px 32px 40px;
  margin: -100px auto 100px;
}
#detail .wrapper{
  gap: 32px;
  display: grid;
  align-items: baseline;
}
#detail .inner{
  align-items: flex-start;
  text-align: left;
  margin: 0 auto;
}
#detail .school-list{
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}
#detail .school-list-inner{
  display: flex;
  flex-direction: column;
  height: 100%;
}
.school-list-inner > p {
  font-size: 14px;
  line-height: inherit;
}
.school-list-inner > p >span {
  margin: 0 8px 0 4px
}
#detail .lectureships{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
  flex-grow: 1;
}
#detail .job-lectureships{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#detail .job-badge{
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  padding: 4px 8px;
  background-color: #EBF9F8;
  border-radius: 8px;
  letter-spacing: 0.05em;
}
#detail .lectureships-inner{
  display: grid;
  gap: 2px;
}
#detail .lectureships p{
  font-size: 14px;
  line-height: 150%;
}
#detail .schedules{
  display: grid;
  grid-auto-flow: dense;
  gap: 4px;
}
#detail .schedules-grid{
  grid-template-columns: repeat(2,1fr);
}
#detail .access-inner{
  display: grid;
  gap: 4px;
  padding: 16px 0;
}
#detail .access-inner p{
  font-size: 14px;
  line-height: 150%;
}
.itemm-inner{
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
}
#detail ol{
  list-style-type: decimal;
  padding-left: 20px;
}
#detail li{
  line-height: 170%;
}
#detail h2{
  padding-bottom: 40px;
}
#detail h3{
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 8px;
}
#detail h4{
  font-size: 16px;
  font-weight: 600;
}
#detail .annotation{
  text-align: left;
  padding: 0;
  line-height: 150%;
}
.itemm-inner th{
  width: 100px;
}
.itemm-inner td{
  padding-bottom: 16px;
}
.button-inner{
  display: grid;
  justify-items: center;
  margin: 16px auto;
  gap: 16px;
}
.link-pdf img{
  width: 16px;
}
.access-map{
  display: grid;
  gap: 4px;
  width: 100%;
}
.access-map img{
  width: 100%;
  max-width: 480px;
}
.border-dotted {
  background-image: linear-gradient(to right, #BFBEBB, #BFBEBB 2px, transparent 2px);
  background-size: 10px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
  height: 2px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #detail {
    border-radius: 30px;
    padding: 40px 16px;
    margin-bottom: 0;
  }
  #detail .wrapper {
    display: grid;
    gap: 32px;
  }
  #detail .inner{
    padding: 0;
  }
  #detail h2 {
    padding: 0 0 16px 0;
  }
  #detail h3 {
    font-size: 16px;
  }
  #detail h4 {
    font-size: 14px;
  }
  #detail p, li{
    font-size: 14px;
  }
  #detail .annotation{
    font-size: 12px;
  }
  #detail .school-list{
    grid-template-columns: 1fr;
  }
  #detail .lectureship{
    gap: 12px;
    padding: 12px 0;
  }
  #detail .access-inner{
    padding: 12px 0 0 0;
  }
  #detail .access-map{
    gap: 8px;
  }
  #detail .itemm-inner{
    margin-bottom: 28px;
    grid-template-columns: 1fr;
  }
  #detail .itemm-inner th {
    width: 80px;
    font-size: 14px;
  }
  #detail .itemm-inner td {
    font-size: 14px;
  }
  .button-inner{
    width: 100%;
    margin: 28px auto 16px;
  }
  .apply-button{
    width: 100%;
    text-align: center;
    padding: 16px 32px;
  }
  .contact-button{
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 32px;
  }
}
/* detail */

/* faq */
#faq{
  max-width: 1024px;
  margin: -100px auto 40px;
  padding-bottom: 0;
}
#faq .wrapper{
  flex-direction: column;
}
.faq-item{
  width: 100%;
  border-top: 1px solid #EBE9E6;
  padding: 0 8px;
}
.faq-item:last-child{
  border-bottom: 1px solid #EBE9E6;
}
.toggle{
  display: none;
}
.question{
  display: flex;
  gap: 8px;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all .2s;
  margin: 8px 0;
}
.question > .question-heading, .question > .question-sentence{
  font-weight: 600;
}
.question > .question-heading{
  color: var(--Primary, #39BFB9);
}
.question > .question-sentence{
  flex-grow: 2;
}
.question > .inner{
  transform: rotate(90deg);
}
.question .arrow img{
  max-width: 11px;
}
.answer{
  height: 0;
	overflow: hidden;
  line-height: 170%;
  text-align: left;
}
.toggle:checked + .question + .answer{
	height: auto;
	transition: all .2s;
  margin: 8px 0;
}
.toggle:checked + .question > .inner{
	transform: rotate(-90deg) !important;
  margin-right: 0.08em;
}
.answer > ul{
  margin-top: 8px;
  list-style: inside;
}
@media screen and (max-width: 768px) {
  #faq{
    padding: 0 16px;
    margin: 0 auto 40px;
  }
  .question > .question-heading, .question > .question-sentence{
    font-size: 15px;
  }
  .question > .inner{
    transform: rotate(0);
    margin-left: 4px;
  }
  .answer p{
    font-size: 14px;
    line-height: 150%;
  }
  .toggle:checked + .question > .inner{
    transform: rotate(-180deg) !important;
    margin-right: 0.03em;
  }
  .answer > ul{
  line-height: 150%;
}
}
/* faq */

/* contact */
#contact{
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  background: var(--Primary, #39BFB9);
  border-radius: 30px;
  color: #fff;
  padding: 40px;
}
#contact .wrapper{
  gap: 16px;
}
#contact .inner{
  display: block;
}
#contact h2{
  padding-bottom: 0;
  text-align: left;
}
.e-mail{
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #contact{
    padding: 40px 28px 24px;
  }
  #contact h2{
    padding-bottom: 16px;
    text-align: center;
  }
  #contact p{
    font-size: 14px;
    text-align: center;
    padding-bottom: 16px;
  }
  #contact .e-mail{
    font-size: 20px;
  }
}
/* contact */

/* footer */
.footer-modal{
  margin: 40px auto;
  padding: 0;
}
.footer-modal .inner{
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  gap: 16px;
}
.c-footer{
  background: #fff;
  padding: 32px 16px;
  margin: 0 auto;
}
.c-footer .inner{
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  align-items: flex-start;
}
.c-footer-logo img{
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}
.footer-message{
  color: var(--Grey_3, #888);
  font-size: 10px;
  padding-top: 16px;
  font-weight: 400;
}
.c-copyright{
  color: var(--Grey_3, #888);
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .footer-modal{
    margin: 20px auto;
    padding: 0  16px;
    font-size: 14px;
  }
  .footer-modal .inner{
    display: grid;
  }
  .c-footer .ln-logo {
    width: 100%;
    text-align: left;
  }
  .c-footer .ln-logo img {
    max-width: 160px;
  }
}
/* footer */

/* モーダルを開くボタン */
.modal-open_pub-info{
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  color: #00807A;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

/* モーダルと背景の指定 */
.modal{
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(250,247,240,.9);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}

/* モーダルの擬似要素の指定 */
.modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active{
  opacity: 1;
  visibility: visible;
}

/* モーダル内側の指定 */
.modal-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  max-width: 1024px;
}

/* モーダルを閉じるボタンの指定 */
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #39bfb9;
  border-radius: 50%;
  cursor: pointer;
  transition: all .3s ease;
}
.modal-close:hover{
  box-shadow: 0 8px 24px 0 rgba(57,191,185,.5);
}
/* モーダルのコンテンツ部分の指定 */
.modal-content{
  background: #fff;
  text-align: left;
  line-height: 1.8;
  padding: 20px;
  box-shadow: 0 1px 1px 0 rgba(0,0,0,.04), 0 8px 32px 0 rgba(0,0,0,.16);
  border-radius: 8px;
  max-height: calc(80vh - 1.5em);
  overflow: auto;
}

/* モーダルのコンテンツ部分のテキストの指定 */
.modal tbody {
  border-top: 1px solid #EBE9E6;
}
.modal table , .modal td, .modal th {
	border-collapse: collapse;
  width: 100%;
  font-size: 13px;
  margin: 0 0 24px 0;
}
.modal td, .modal th {
	padding: 8px;
	width: 30px;
	height: 25px;
  border-bottom: 1px solid #EBE9E6;
}
.modal th {
	background: #f0e6cc;
}
.modal .even {
	background: #fbf8f0;
}
.modal .odd {
	background: #fefcf9;
}
.modal .pubinfo-title{
  font-weight: 600;
  font-size: 18px;
    padding-bottom: 8px;
}
.modal .large-item{
  background:#F7F6F2;
  font-weight: 600;
  width: 15%;
  font-size: 14px;
}
.modal .middle-item{
  border-right: 1px solid #EBE9E6;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .modal {
    padding: 40px 0;
  }
  .modal table{
    display: inline-table;
    margin-bottom: 32px;
  }
  .modal .large-item {
    width: 30%;
  }
}


/* 利用規約 */
.o-container{
  margin-top:100px;
}
.c-header{
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 8px;
}
.c-header .wrapper.c-wrapper {
  width: 100%;
  background: #fff;
  max-width: 1280px;
  padding: 20px 40px;
  border-radius: 30px;
  border: 8px solid #FAF7F0;
  transition: 0.2s;
  margin: 0 auto;
}
.c-segment{
  margin:0 auto;
  width: 100%;
  max-width: 960px;
  text-align: left;
  padding: 16px 0;
}
.c-segment__inner{
  padding: 24px;
  background: #fff;
  border-radius: 8px;
}
.c-heading{
  color: #222;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: .04em;
}
.c-heading--h1{
  font-size: 26px;
}
.c-heading--x {
  font-size: 20px;
  padding: 0;
}
.c-agreement__item--l {
  margin-top: 24px;
}
.c-agreement__title {
  font-weight: 600;
  font-size: 14px;
  margin: 24px auto 8px;
}
.c-segment ol{
  list-style-type: decimal;
  padding-left: 20px;
}
.c-segment li{
  line-height: 170%;
}
.c-agreement__list{
  counter-reset: num;
  padding-left: 14px;
}
.c-agreement__order{
  color: #444;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  font-size: 14px;
}
.c-agreement__order--parentheses{
  text-indent: -14px;
  padding-left: 14px;
}
.c-agreement__order--parentheses:before {
  counter-increment: num;
  content: "(" counter(num) ")";
  display: inline-block;
  width: 14px;
}
.c-agreement__order--roman{
  text-indent: -14px;
  padding-left: 14px;
  list-style-type: lower-roman;
}
.c-agreement__order--roman:before {
  display: inline-block;
  width: 14px;
}
.c-segment .modal-container {
  width: 100%;
  margin-top: 24px;
}
.c-segment tbody {
  border-top: 1px solid #EBE9E6;
}
.c-segment table , .c-segment td, .c-segment th {
	border-collapse: collapse;
  width: 100%;
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 24px 0;
}
.c-segment td, .c-segment th {
	padding: 8px;
	width: 30px;
	height: 25px;
  border-bottom: 1px solid #EBE9E6;
}
.c-segment th {
	background: #f0e6cc;
}
.c-segment .even {
	background: #fbf8f0;
}
.c-segment .odd {
	background: #fefcf9;
}
.c-segment .large-item{
  background:#F7F6F2;
  font-weight: 600;
  width: 24%;
  font-size: 14px;
}
.c-segment .middle-item{
  border-right: 1px solid #EBE9E6;
  width: 20%;
}
.c-agreement__item--m{
  font-size: 14px;
  text-align: right;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .o-container {
    margin-top: 0;
  }
  .c-segment {
    padding: 8px 0;
  }
  .c-header .wrapper.c-wrapper {
    padding: 20px 16px;
  }
  .c-segment__inner {
    padding: 24px 16px;
  }
  .c-heading--h1{
    font-size: 22px;
    padding-top: 60px;
  }
  .c-heading--x {
    font-size: 18px;
  }
}
/* 利用規約 */
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
