:root {
  --font-size-headline: 4.8rem;
  --font-size-extra-large: 4.0rem;
  --font-size-large: 3.4rem;
  --font-size-medium: 1.8rem;

  --font-family-alphanumeric: 'Zen Maru Gothic';
}
@media screen and (max-width:768px) {
:root {
  --font-size-headline: 3.0rem;
  --font-size-extra-large: 2.8rem;
  --font-size-large: 2.4rem;
  --font-size-medium: 1.6rem;

  --font-family-alphanumeric: 'Zen Maru Gothic';
}
}
/* font-size */
.font-md {
  font-size: var(--font-size-medium);
}

html {
  font-size: 62.5%;
}
body {
  font-family: 'Noto Sans JP', 'Zen Maru Gothic';
  font-size: 2.4rem;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  line-height: 1.8;
}

*,
*::before,
*::after {
    box-sizing: border-box
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0
}

ul[role="list"],
ol[role="list"] {
    list-style: none
}

html:focus-within {
    scroll-behavior: smooth
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
}

a:not([class]) {
    text-decoration-skip-ink: auto
}

img,
picture {
    max-width: 100%;
    display: block
}

input,
button,
textarea,
select {
    font: inherit
}

table {
  font-size: 2.4rem;
}

/* fader */
.fader {
  transition: ease .5s;
  opacity: 0;
  transform: translateX(-50px);
}
.fadein {
  opacity: 1;
  transform: translateX(0px); 
}
/* v-center */
.vcenter {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* width */
.w-90 {
  width: 90%;
}
.w-80 {
  width: 80%;
}
.w-70 {
  width: 70%;
}
.w-65 {
  width: 65%;
}
@media screen and (min-width:768px) {
  .w-md-90 {
    width: 90%;
  }
  .w-md-80 {
    width: 80%;
  }
  .w-md-70 {
    width: 70%;
  }
  .w-md-65 {
    width: 65%;
  }
  .w-md-50 {
    width: 50%;
  }
}

.mt-1 {margin-top: 1rem;}
.mt-2 {margin-top: 2rem;}
.mt-3 {margin-top: 3rem;}
.mt-4 {margin-top: 4rem;}
.mt-5 {margin-top: 5rem;}
.mt-6 {margin-top: 6rem;}
.mt-7 {margin-top: 7rem;}
.mt-8 {margin-top: 8rem;}
.mt-9 {margin-top: 9rem;}
.mt-10 {margin-top: 10rem;}
/* margin */
.mb-1r {margin-bottom: 1rem;}
.mb-2r {margin-bottom: 2rem;}
.mb-3r {margin-bottom: 3rem;}
.mb-4r {margin-bottom: 4rem;}
.mb-5r {margin-bottom: 5rem;}
.mb-6r {margin-bottom: 6rem;}
.mb-7r {margin-bottom: 7rem;}
.mb-8r {margin-bottom: 8rem;}
.mb-9r {margin-bottom: 9rem;}
.mb-10r {margin-bottom: 10rem;}
.mb-11r {margin-bottom: 11rem;}
.mb-12r {margin-bottom: 12rem;}
.mb-13r {margin-bottom: 13rem;}
.mb-14r {margin-bottom: 14rem;}
.mb-15r {margin-bottom: 15rem;}
.mb-16r {margin-bottom: 16rem;}
.mb-17r {margin-bottom: 17rem;}
.mb-18r {margin-bottom: 18rem;}
.mb-19r {margin-bottom: 19rem;}
.mb-20r {margin-bottom: 20rem;}
/* padding-top */
.pt-1r {padding-top: 1rem;}
.pt-2r {padding-top: 2rem;}
.pt-3r {padding-top: 3rem;}
.pt-4r {padding-top: 4rem;}
.pt-5r {padding-top: 5rem;}
.pt-6r {padding-top: 6rem;}
.pt-7r {padding-top: 7rem;}
.pt-8r {padding-top: 8rem;}
.pt-9r {padding-top: 9rem;}
.pt-10r {padding-top: 10rem;}
.pt-11r {padding-top: 11rem;}
.pt-12r {padding-top: 12rem;}
.pt-13r {padding-top: 13rem;}
.pt-14r {padding-top: 14rem;}
.pt-15r {padding-top: 15rem;}
.pt-16r {padding-top: 16rem;}
.pt-17r {padding-top: 17rem;}
.pt-18r {padding-top: 18rem;}
.pt-19r {padding-top: 19rem;}
.pt-20r {padding-top: 20rem;}
/* padding-bottom */
.pb-1r {padding-bottom: 1rem;}
.pb-2r {padding-bottom: 2rem;}
.pb-3r {padding-bottom: 3rem;}
.pb-4r {padding-bottom: 4rem;}
.pb-5r {padding-bottom: 5rem;}
.pb-6r {padding-bottom: 6rem;}
.pb-7r {padding-bottom: 7rem;}
.pb-8r {padding-bottom: 8rem;}
.pb-9r {padding-bottom: 9rem;}
.pb-10r {padding-bottom: 10rem;}
.pb-11r {padding-bottom: 11rem;}
.pb-12r {padding-bottom: 12rem;}
.pb-13r {padding-bottom: 13rem;}
.pb-14r {padding-bottom: 14rem;}
.pb-15r {padding-bottom: 15rem;}
.pb-16r {padding-bottom: 16rem;}
.pb-17r {padding-bottom: 17rem;}
.pb-18r {padding-bottom: 18rem;}
.pb-19r {padding-bottom: 19rem;}
.pb-20r {padding-bottom: 20rem;}
/* padding left-right */
.px-10r {padding-left: 10rem;padding-right: 10rem;}
@media screen and (min-width:768px) {
  .px-md-10r {padding-left: 10rem;padding-right: 10rem;}
}

@media(prefers-reduced-motion:reduce) {
    html:focus-within {
        scroll-behavior: auto
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }
}

li {
    list-style: none;
}

img {
  max-width: 100%;
}
a {
  color: #333333;
  text-decoration: none;
}
select {
  max-width: 100%;
}
body {
  background: #f3f3f3;
}
/* header */
header {
  width: 100%;
  z-index: 100;
  padding: 2rem 0;
  margin-top: 4rem;
  background: #f3f3f3;
  position: sticky;
  top: 0;
}


/* font */
.en {
  font-family: var(--font-family-alphanumeric);
}
/* General style */
h1 {
  font-weight: bold;
  font-size: var(--font-size-headline);
}
h2 {
  font-weight: bold;
  text-align: center;
  font-size: 2.8rem;
}
h2 .en {
  color: #30b7cd;
  font-family: var(--font-family-alphanumeric);
}
h2 .ja {
  font-size: var(--font-size-headline);
}
h3 {
  font-size: 2.8rem;
  text-align: center;
  font-weight: bold;
}
/* marker */
span.marker_yellow {
  background: linear-gradient(transparent 0%, transparent 50%, #ffd800 50%, #ffd800 100%);
}
span.marker_light_yellow {
  background: linear-gradient(transparent 0%, transparent 50%, #ffe680 50%, #ffe680 100%);
}
span.marker_white {
  background: linear-gradient(transparent 0%, transparent 50%, #FFFFFF 50%, #FFFFFF 100%);
}
/* text color */
.text-turquoise {
  color: #30b7cd;
}
/* error message */
.error-message {
  color: #FF0000;
}
/* alert-success */
.alert-success {
  background: #0000FF;
  color: #FFFFFF;
  margin: 0 0 3rem 0;
  padding: 20px;
}

/* container */
.container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.container-inner {
  max-width: 1650px;
  margin-left: auto;
  margin-right: auto;
}

/* フルウィンドウの時の最大サイズ */
@media screen and (max-width:1750px) {
  .container-inner {
    padding-left: 7%;
    padding-right: 7%;
  }
}
@media screen and (max-width:768px) {
  .container-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.container {
    max-width: 100%;
}
/* d-flex */
.d-flex {
  display: flex;
}

/* two-columns */
.two-columns>dl,
.two-columns>div,
.two-columns>li {
  width: 50%;
  padding-right: 2.5rem;
}
.two-columns>dl:nth-of-type(2n),
.two-columns>div:nth-of-type(2n),
.two-columns>li:nth-of-type(2n) {
  padding-left: 2.5rem;
  padding-right: 0;
}
@media screen and (max-width:768px) {
  .two-columns>dl,
  .two-columns>div,
  .two-columns>li {
    width: auto;
    padding-right: 0;
  }
  .two-columns>dl:nth-of-type(2n),
  .two-columns>div:nth-of-type(2n),
  .two-columns>li:nth-of-type(2n) {
    padding-left: 0;
  }
}
/* three-columns */
.three-columns>dl,
.three-columns>div,
.three-columns>li {
  width: 32%;
  margin: 0 2% 0 0;
}
.three-columns>dl:nth-of-type(3n),
.three-columns>div:nth-of-type(3n),
.three-columns>li:nth-of-type(3n) {
  margin: 0;
}
@media screen and (max-width:768px) {
  .three-columns>dl,
  .three-columns>div,
  .three-columns>li {
    width: auto;
    margin: 0;
  }
}
/* four-columns */
.four-columns>dl,
.four-columns>div,
.four-columns>li {
  width: 22%;
  margin-right: 4%;
}
.four-columns>dl:nth-of-type(4n),
.four-columns>div:nth-of-type(4n),
.four-columns>li:nth-of-type(4n) {
  margin-right: 0%;
}
@media screen and (max-width:768px) {
  .four-columns>dl,
  .four-columns>div,
  .four-columns>li {
    width: auto;
    margin-right: 0;
  }
}


/* 背景色 */
.bg_yellow {
  background-color: #ffd800;
}
.bg_light_yellow {
  background-color: #feea92;
}
.bg_pale_yellow {
  background-color: #FDF8DC;
}
.bg_white {
  background-color: #ffffff;
}
/* ボーダー */
.bdr {
  border-radius: 30px;
  border: 3px solid #333333;
}
.rad-30 {
  border-radius: 30px;
}
.rad-15 {
  border-radius: 15px;
}
/* box */
.box_p2r {
  padding: 20px;
}

/* ボタン */
a.btn {
  text-align: center;
  display: block;
  border-radius: 100vh;
  border: 3px solid #333333;
  background: #FFFFFF;
  margin: 0 auto;
  font-weight: bold;
  background: #FFFFFF;
  --box-shadow-color: #000000;
}
a.btn.btn-turquoise {
  background: #30b7cd;
  border: 3px solid #0e8fa4;
  color: #FFFFFF;
  --box-shadow-color: #0e8fa4;
}
a.btn.btn-yellow {
  background: #ffd800;
  border: 3px solid #333333;
}
a.btn.btn-sm {
  width: 240px;
  line-height: 45px;
  padding: 0;
  font-size: 1.6rem;
	box-shadow: 0px 3px 0px var(--box-shadow-color);
}
a.btn.btn-lg {
  width: 350px;
  line-height: 70px;
  padding: 0;
  font-size: 2.0rem;
	box-shadow: 0px 5px 0px var(--box-shadow-color);
} 
@media screen and (max-width:768px) {
  a.btn.btn-lg {
    width: auto;
  } 
}


/* fixed-btn_right-bottom */
#fixed-btn_right-bottom {
  position: fixed;
  bottom: 10px;
  right: 0;
  z-index: 1000;
}
#fixed-btn_right-bottom a {
  position: relative;
}
#fixed-btn_right-bottom a span {
  display: block;
  padding: 1rem 2rem;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.8rem;
  background: #30b7cd;
  border-top: 3px solid #333333;
  border-left: 3px solid #333333;
  border-bottom: 3px solid #333333;
  border-radius: 15px 0 0 15px;
  box-shadow: 0px 3px 0px #333333;
}

/* main title */
.main-title {
  background: url(/assets/img/global/img_title_bg.png) no-repeat left top;
  background-size: auto 100%;
  padding: 0 0 13rem 0;
}
.title h2 {
  position: relative;
  font-weight: bold;
  text-align: center;
}
.title h2 .en {
  line-height: 1;
  font-size: 25rem;
  color: #FFFFFF;
}
.title h2 .ja {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 5.4rem;
}
@media screen and (max-width:768px) {
  .main-title {
    background: none;
    padding: 0 0 5rem 0;
  }
  .title h2 .en {
    font-size: 12rem;
  }
  .title h2 .ja {
    font-size: 3.4rem;
  }
}
/* bread-list */
#bread-list {
  padding:  1rem 0 5rem 0;
  font-size: 1.4rem;
}
#bread-list a {
  font-weight: bold;
}
@media screen and (max-width:768px) {
  #bread-list {
    padding: 0 2rem 2rem 2rem;
  }
}



/* */
.table {
  margin: 0 0 15px 0;
  display: table;
  width: 100%;
}
.table dl.header {
  background: #F7F7F7;
}
.table dl.header dt,
.table dl.header dd,
.table tr th,
.table tr td {
  border-bottom: 2px solid #CCCCCC;
}
.table tr td {
  border-left: 1px solid #CCCCCC;
}
.table dl {
  display: table-row;
}
.table dt {
  width: 25%;
}
.table dt,
.table dd,
.table th,
.table td {
  border-bottom: 1px solid #CCCCCC;
  padding: .5rem 1rem;
  display: table-cell;
  vertical-align: middle;
}
.table dd input[type=text],
.table dd input[type=tel],
.table dd input[type=email],
.table dd input[type=password],
.table dd textarea,
.table dd select {
  font-size: 1.8rem;
  border-radius: 5px;
  padding: 5px;
  border: 1px solid #CCCCCC;
  width: 100%;
}
.table dd input[type=date] {
  font-size: 1.8rem;
  border-radius: 5px;
  padding: 5px;
  border: 1px solid #CCCCCC;
}
.table dd select {
  border-radius: 5px;
  padding: 5px;
  border: 1px solid #CCCCCC;
}
.table dt a,
.table dd a {
  text-decoration: underline;
}



footer {
    background: url(https://aso-biz.jp/assets/img/global/bg_footer.png) no-repeat 0 8rem;
    background-size: auto 44rem;
    padding: 13rem 0 10rem 13rem;
}
footer div.logo {
    width: 16rem;
    margin: 0 0 8rem 0;
}
footer h1 {
    font-size: 6.4rem;
    line-height: 1.4;
    margin: 0 0 13rem 0;
}
footer ul {
    margin: 0 0 13rem 0;
    padding: 0 4rem 0 0;
}
footer ul li {
    font-weight: bold;
    font-size: var(--font-size-medium);
}
footer ul.sns-icon li {
    margin: 0 3rem 0 0;
}
footer ul.sns-icon li img {
    width: 5.3rem;
}
copy {
    font-size: 1.4rem;
}
@media screen and (max-width:768px) {
footer {
    background: url(https://aso-biz.jp/assets/img/global/bg_footer.png) no-repeat 0 8rem;
    background-size: 50% auto;
    padding: 13rem 0 10rem 3rem;
}
footer div.logo {
    width: 12rem;
    margin: 0 0 2rem 0;
}
footer h1 {
    font-size: 2.8rem;
    margin: 0 0 4rem 0;
}
footer>div {
    font-size: var(--font-size-medium);
}
footer>div>div {
    width: 40%;
}
footer>div>div:nth-of-type(3n) {
    width: auto;
    padding: 0 0 2rem 0;
}
footer>div>div:nth-of-type(4n) {
    width: auto;
}
footer ul {
    margin: 0 0 2rem 0;
    padding: 0;
}
}
