* {
	box-sizing: border-box;
	font-family: 'Yu Mincho', YuMincho, 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HGP明朝B', serif;
	-webkit-font-feature-settings: 'pkna';
	font-feature-settings: 'pkna';
	font-size: 14px;
	line-height: 1.9;
	letter-spacing: 0.03em;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
}

#cssReload {
  z-index: 99;
}

#start {
  overflow: scroll;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template: 1fr/1fr;
  grid-template-areas: 
  "allgrid"
  ;
}

.allgrid {
  grid-area: allgrid;
  width: 100%;
    display: grid;
    grid-template: 7% 7% 1fr;
    grid-template-areas: 
    "header"
    "view1"
    "wrapper";
}

.header {
  width: 100%;
  height: 5%;
  grid-area: header;
}

.view1 {
  width: 100%;
  height: 5%;
  justify-self: center;
  grid-area: view1;
  display: flex;
  flex-direction: column;
}

.dispblock {
  display: block;
}

.wrapper {
  grid-area: wrapper;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 50%;
  display: grid;
  grid-template: 1fr/1fr;
  grid-template-areas: 
  "main"
  ;
}

.main {
  width: 100%;
  height: 100%;
  grid-area: main;
}
 
 .read-more-state {
    display: none;
  }
  
  .read-more-target {
    opacity: 0;
    max-height: 0;
    font-size: 0;
    transition: .15s ease;
    width: 100%;
  }

  .read-more-wrap {
    display: flex;
    flex-direction: column;
  }
   
  .read-more-state:checked ~ .read-more-wrap .read-more-target {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
  }
   
  .gaiyoutitle {
    position: relative;
    left: 10%;
  }
  .read-more-trigger:before {
    content: 'more';
  }
   
  .read-more-state:checked ~ .read-more-trigger:before {
    content: 'close';
  }

  .read-more-trigger {
    position: relative;
    left: 10%;
    width: 20%;
    position: relative;
    z-index: 99;
    cursor: pointer;
    display: block;
    padding: 0 .5em;
    color: #666;
    font-size: .9em;
    line-height: 2;
    border: 1px solid #ddd;
    border-radius: .25em;
  }

  .tsuzukisize {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  

  .tableSample {
    z-index: 1;
    position: relative;
    width: 100%;
    border-collapse: collapse;
  }
    
  .tableSample th,td {
    z-index: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
  }
    
  .tableSample th {
    background: #f4f4f4;
    width: 15%;
    text-align: left;
  }
    
@media only screen and (max-width:479px) {
  .tableSample th,td {
    width: auto;
    display: block;
    border-top: none;
  }
  .tableSample tr:first-child {
    border-top: 1px solid #d5d5d5;
  }
}

h1 {
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
  font-size: 17px; 
  text-align: center;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
}

h1 {
  letter-spacing: 0.15em;
  color: #333;
  text-shadow: 0 20px 10px rgba(0, 0, 0, .5);
}


.contentsview {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}

.card{
  flex-shrink: 0;
  width: 30%;
  min-width: 300px;
  margin-bottom: 30px;
  display: grid;
  grid-template: 1fr 1fr/1fr;
  grid-template-areas:
  "high"
  "low"
  ;
}

.card__imgframe {
  position: relative;
  grid-area: high;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.card__imgframe img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.card__textbox{
  grid-area: low;
  width: 100%;
  height: auto;
  padding: 20px 18px;
  background: #ffffff;
  box-sizing: border-box;
}
.card__textbox > * + *{
  margin-top: 10px;
}
.card__titletext{
  font-size: 20px;
  font-weight: bold;
  line-height: 125%;
}
.card__overviewtext{
  font-size: 12px;
  line-height: 150%;
}

.card-skin{
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
}

.card__overviewtext ul {
  list-style: none;
}

.card__overviewtext ul li label {
  cursor: pointer;
}

.copyright {
  position: relative;
  display: flex;
  justify-content: center;
}

.copyright label {
  font-size: 5px;
}

.visibledesc {
  display: none;
}

.desc {
  z-index: -1;
  opacity: 0;
  width: 100%;
  height: 100%;
  grid-area: main;
  overflow-y: scroll;
  transition: all 0.5s 0s ease;
  background-color: #ECECEC;
  
  grid-row: 2 / 4;
  grid-column: 1 / 1;

}

.desc .read-more-wrap {
  width: 100%;
  height: auto;
  display: grid;
  grid-template: 10% 1fr 1fr/1fr;
  grid-template-areas:
  "desctitle"
  "descimgframe"
  "desclist"
  ;
}

.desctitle {
  grid-area: desctitle;
}

.descimgframe {
  width: 100%;
  height: 100%;
  grid-area: descimgframe;
  justify-self: center;
}

.descimgframe img {
  object-fit: contain;
}

.desclist{
  grid-area: desclist;
}

.desclist ul {
  list-style: none;
}

.tableSample ul {
  list-style: none;
}

.visibledesc:checked + .desc {
  animation: fadein 3s ease-out forwards;
  z-index: 99;
}

.visibledesc:checked ~ .header {
  display: none;
}

.visibledesc:checked ~ .view1 {
  display: none;
}

.visibledesc:checked ~ .wrapper {
  display: none;
}

#sapdesc {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  transition: all 0.5s 0s ease;
}

#programdesc {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  transition: all 0.5s 0s ease;
}

#consdesc {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  transition: all 0.5s 0s ease;
}

#offsdesc {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  transition: all 0.5s 0s ease;
}

#applydesc {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  transition: all 0.5s 0s ease;
}

#partnerdesc {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  transition: all 0.5s 0s ease;
}


#contactdesc {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  transition: all 0.5s 0s ease;
}

.close {
    width: 20%;
    position: relative;
    z-index: 99;
    cursor: pointer;
    display: block;
    padding: 0 .5em;
    color: #666;
    font-size: .9em;
    line-height: 2;
    border: 1px solid #ddd;
    border-radius: .25em;
}

@keyframes fadein {
  0% {
     opacity: 0;
  }
  100% {
     opacity: 1;
  }
}