/* リセットCSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

*{
  box-sizing: border-box;
}
html{
  font-size: min(calc(100vw * 10 / 1440), 10px);
  font-family: 'Noto Serif JP';
  scroll-behavior: smooth;
}
body{
  background: url(../img/bk.png) top left / 1.2rem;
}
main{
  width: 99.6rem;
}
table, tbody, tr{
  display: block;
}
img{
  max-width: 100%;
}
a{
  color: #000;
  text-decoration: none;
}
.sp{
  display: none;
}
.en{
  font-family: 'EB Garamond', serif;
}
.inner{
  width: min(100%, 79.6rem);
  margin: 0 auto;
}
.wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 5rem;
}
.row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
}
.btn {
  display: flex;
  justify-content: center;
}
.btn a,
.btn input{
  background: #225b88;
  color: #fff;
  display: inline-block;
  position: relative;
  padding: 1.8rem 10rem;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 100rem;
  line-height: 1.4;
  border: none;
  cursor: pointer;
}
.btn a::after{
  content: '';
  position: absolute;
  top: 50%;
  right: 1.7rem;
  transform: translateY(-50%) rotate(45deg);
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.table {
  line-height: 1.8;
}
.table + .table{
  margin-top: 3rem;
}
.table .table_ttl{
  padding-bottom: 2rem;
  font-size: 2rem;
}
.table table tbody{
  font-size: 1.4rem;
}
.table table tbody tr{
  display: flex;
}
.table table tbody th{
  padding: 2rem;
  width: 30%;
  font-weight: bold;
  text-align: center;
}
.table table tbody td{
  background: #fff;
  width: 70%;
  padding: 2rem;
}
@media (min-width: 768px){
  .table table tbody{
    border-top: 1px solid;
    border-left: 1px solid;
  }
  .table table tbody th{
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .table table tbody td{
    border-bottom: 1px solid;
    border-right: 1px solid;
  }
}
@media (max-width: 767px){
  html{
    font-size: min(calc(100vw * 10 / 767), 10px);
  }
  main{
    width: 100%;
    margin-bottom: 3rem;
  }
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  .sp_max{
    width: 100% !important;
  }
  .wrap{
    padding: 3rem;
  }
  .btn a{
    font-size: 3.6rem;
  }
  .btn a::after{
    width: 2.4rem;
    height: 2.4rem;
    right: 3.4rem;
  }
  .table .table_ttl{
    font-size: 4rem;
  }
  .table table{
    overflow: scroll;
  }
  .table table tbody{
    font-size: 2.8rem;
    border: 1px solid;
  }
  .table table tbody tr{
    flex-direction: column;
  }
  .table table tbody th{
    width: 100%;
  }
  .table table tbody td{
    width: 100%;
  }
}

/* copy */
.copy p{
  font-size: 1.2rem;
  text-align: center;
}
@media (max-width: 767px){
  .copy p{
    font-size: 2.4rem;
  }
}

/* aside */
aside{
  background: #39b1f4;
  color: #fff;
  width: 31.2rem;
  text-align: center;
}
aside .sticky{
  position: sticky;
  top: 0;
  padding: 4rem 0;
}
aside .sticky .h1{
  margin-bottom: 4rem;
  font-size: 2rem;
  line-height: 1.2;
}
aside .sticky .img{
  margin-bottom: 3rem;
}
aside .sticky .txt{
  margin-bottom: 3rem;
  font-size: 1.4rem;
  line-height: 1.4;
}
aside .sticky .merit{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
aside .sticky .merit li{
  background: #fff;
  color: #39b1f4;
  margin-bottom: .2rem;
  padding: .2rem .4rem;
  font-size: 1.2rem;
}
aside .sticky .aside_contact .aside_contact_txt{
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  font-size: 1.6rem;
}
aside .sticky .aside_contact .aside_contact_txt::after{
  content: '';
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 1px;
}
aside .sticky .aside_contact .tel{
  width: 20rem;
  margin: 0 auto;
}
@media (max-width: 767px){
  aside{
    width: 100%;
  }
  aside .sticky .h1{
    font-size: 4rem;
  }
  aside .sticky .txt{
    font-size: 2.8rem;
  }
  aside .sticky .merit li{
    font-size: 3.4rem;
  }
  aside .sticky .aside_contact .aside_contact_txt{
    font-size: 3.2rem;
  }
  aside .sticky .aside_contact .tel{
    width: min(100%, 40rem);
  }
}
