/*
  Josh's Custom CSS Reset --- more customized
*/
*,*::before,*::after{box-sizing:border-box}*{margin:0;padding:0}html,body{height:100%}body{line-height:1.0;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:inline-block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word;font-size:100%}#root,#__next{isolation:isolate}

/* Basic settings */
ul li,
ol li {
  list-style: none;
}

html {
-ms-text-size-adjust:100%;
-webkit-text-size-adjust:100%;
font-size: 62.5%;
}
body {
color:#444;
font-family: -apple-system, BlinkMacSystemFont, Roboto, Arial, 'Noto Sans JP', sans-serif;
font-size: 1.6rem;
}
body *{
  box-sizing: inherit;
}
a {
background-color:transparent;
outline:0;
text-decoration:none;
transition: all .5s;
}
a:link    {color:#3366cc;}
a:visited {color:#3366cc;}
a:hover   {color:#1a428c;}
a:active  {color:#99ccff;}

/* -------------------------------------------------------
Layout
---------------------------------------------------------- */
html,
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.footer {
  margin-top: auto;
}
.f_link {
  display: flex;
  justify-content: center;
  padding: 2em 0 1em;
}
.f_link li + li {
  margin-left: 1em;
}
.cp {
  padding: 1em 0;
  font-size: 80%;
  text-align: center;
}

h1, h2, h3, h4 {
  font-weight: normal;
}
.list_disc li {
  list-style: disc;
}
ol.decimal {
  padding-left: 2em;
}
ol.decimal li {
  list-style: decimal;
}
.img_box img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* button */
a.btn_c {
  position: relative;
  display: inline-block;
  padding: 1em 3em;
  background-color: #111;
  border: 1px solid #111;
  color: #fff;
  font-size: 90%;
  letter-spacing: .1em;
  vertical-align: middle;
}
a.btn_c::before,
a.btn_c::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
a.btn_c.now {
  background-color: #fff;
  border-color: #ccc;
  color: #666;
}
a.btn_v {
  display: inline-block;
  padding: 2em 1em;
  background-color: #111;
  border: 1px solid #111;
  color: #fff;
  font-size: 90%;
  letter-spacing: .1em;
}
.arrow::before {
  right: 16px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.page_title {
  background-color: #e41525;
  color: #fff;
}
.page_title h1 {
  padding: 1em 0;
  font-size: 140%;
  font-weight: bold;
  text-align: center;
}
.page_body h2 {
  padding: .5em 0 .5em .5em;
  border-left: 5px solid #45ada8;
  font-size: 130%;
  font-weight: bold;
}
.page_body h3 {
  padding: .5em;
  border-bottom: 1px solid #45ada8;
  font-size: 120%;
  font-weight: bold;
}
.page_body h4 {
  font-size: 110%;
  font-weight: bold;
}
.page_body .inner_hd {
  margin-top: 3rem;
}

.cta_wrap {
  background-color: #a6121c;
}



/* -------------------------------------------------------
for SmartPhone only
---------------------------------------------------------- */
@media screen and (max-width:599px){
  .pc, .tab, .tabpc {display: none;}

  /* header */
  .intro_wrap {
    padding: .5em 1em;
    background-color: #e41525;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .header_inner {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .header_inner .title {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header_inner .title .logo_img img {
    width: auto;
    height: 40px;
  }
  .header_inner .title .logo_txt {
    padding-left: 1rem;
    color: #111;
    font-size: 2rem;
    font-weight: bold;
  }

  /* fv */
  .fv {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url(images/fv.jpg) no-repeat center;
    background-size: cover;
    overflow: hidden;
    z-index: 1;
  }
  .fv::before {
    background: inherit;
    content: "";
    position: absolute;
    filter: blur(2px);
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    z-index: -1;
  }
  .fv_filter {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.7),rgba(255,255,255,0.2));
  }
  .fv_inner {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
  .catch_box {
    position: absolute;
    top: 20%;
    /*color: #e70012;*/
    width: 100%;
    color: #111;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
  }
  .catch_box .catch1 {
    color: #e70012;
    font-size: 2em;
    text-shadow: 0 0 8px #fff;
  }
  .catch_box .catch2 {
    color: #e70012;
    font-size: 2em;
    text-shadow: 0 0 8px #fff;
  }
  .catch_box .catch3 {
    font-size: 1.5em;
  }
  .catch_box .catch1 span,
  .catch_box .catch2 span,
  .catch_box .catch3 span {
    color: #111;
    font-size: 80%;
    text-shadow: 0 0 0;
  }
  .catch_box .lead_btn {
    margin-top: 4rem;
  }
  .catch_box .lead_btn a {
    display: inline-block;
    padding: 1em 2em;
    background-color: #fff;
    color: #e41625;
    font-size: 110%;
    font-weight: bold;
  }

  /* title */
  .kouka_inner h2,
  .tokutyo_inner h2 {
    color: #e70012;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
  }

  .merit_wrap {
    background-color: #e41525;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .merit_inner h2 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
  }
  .merit_inner ul {
    margin-top: 4rem;
    padding-right: 3rem;
    padding-left: 3rem;
    color: #fff;
  }
  .merit_inner li {
    line-height: 1.8;
  }
  .merit_inner li + li {
    margin-top: 2rem;
  }
  .merit_inner li h3 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: .05em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  }

  .kouka_wrap {
    background: url(images/kouka_bg.jpg) no-repeat center bottom;
    background-size: cover;
  }
  .kouka_filter {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,1),rgba(255,255,255,0.5));
  }

  .kouka_inner {
    padding-top: 8rem;
    padding-right: 1rem;
    padding-bottom: 6rem;
    padding-left: 1rem;
  }
  .syukyaku {
    margin-top: 4rem;
    padding: 1em;
    background-color: #333;
    border-radius: 8px;
    color: #fff;
    line-height: 1.8;
  }
  .syukyaku h3 {
    margin-bottom: .5em;
    font-size: 120%;
    font-weight: bold;
  }
  .target {
    margin-top: 4rem;
    color: #111;
    line-height: 1.8;
    text-shadow: 0 0 3px rgba(255,255,255,1);
  }

  .tokutyo_wrap {
    margin-top: 10rem;
  }

  .tokutyo_inner {
    padding-right: 3rem;
    padding-bottom: 6rem;
    padding-left: 3rem;
  }
  .tokutyo_inner dl {
    margin-top: 4rem;
    line-height: 1.8;
  }
  .tokutyo_inner dt {
    color: #111;
    font-size: 120%;
    font-weight: bold;
  }
  .tokutyo_inner dd + dt {
    margin-top: 1.5em;
  }

  .pickup_img {
    text-align: center;
  }
  .pickup_img img {
    max-width: 100%;
    height: auto;
  }

  .cta {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .cta p {
    color: #fff;
    line-height: 1.6;
  }
  .cta h2 {
    margin-bottom: 1em;
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
  }
  .cta h2 span {
    display: block;
    font-size: 2.0rem;
  }
  .cta_btn {
    margin-top: 3rem;
    padding-right: 1em;
    padding-left: 1em;
  }
  .cta_btn a {
    display: block;
    padding: 1em 0;
    background-color: #fff;
    color: #111;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  .cta_btn.tel a {
    font-size: 3rem;
    letter-spacing: .05em;
  }
  .cta_btn.mail a {
    font-size: 2rem;
  }

  /* page */
  .page_body {
    margin-top: 3rem;
    margin-bottom: 4rem;
    padding-right: 1em;
    padding-left: 1em;
  }

  .text_box {
    margin-top: 3rem;
    line-height: 1.8;
  }

  .info_table {
    width: 100%;
    margin-top: 3rem;
  }
  .info_table tr,
  .info_table th,
  .info_table td {
    display: block;
  }
  .info_table th {
    padding: .5em 1em;
    background-color: #f7f7f7;
    font-size: 90%;
    font-weight: normal;
    text-align: left;
  }
  .info_table td {
    padding: 1em 1em 2em;
    line-height: 1.8;
  }
  .torihiki_list {
  }
  .accessmap_wrap {
    margin-top: 4rem;
  }
  .accessmap {
    margin-top: 3rem;
  }
  .accessmap iframe {
    width: 100%;
    height: 200px;
  }

}/* end smartphone only */
/* -------------------------------------------------------
for smartphone landscape
---------------------------------------------------------- */
@media (orientation: landscape) {

}/* end smartphone landscape */
/* -------------------------------------------------------
for TAB & PC
---------------------------------------------------------- */
@media screen and (min-width:600px){
  .ssp {display: none;}
  a[href^="tel:"] {
    pointer-events: none;
  }
	/* block */
  .flx   {display: flex;}
  .fd_r  {flex-direction: row;}
  .fd_rr {flex-direction: row-reverse;}
  .jc_sb {justify-content: space-between;}
  .jc_c  {justify-content: center;}
  .al_c  {align-items: center;}

  /* header ----- */
  .intro_wrap {
    padding: 1rem;
    background-color: #e41525;
  }
  .intro_wrap p {
    max-width: 1024px;
    margin: 0 auto;
    color: #fff;
    font-size: 80%;
  }
  .header_inner {
    display: flex;
    justify-content: space-between;
    max-width: 1056px;
    margin: 0 auto;
    padding-right: 1em;
    padding-left: 1em;
  }
  .header_inner .title {
    display: flex;
    align-items: center;
    width: 400px;
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .header_inner .title .logo_img {
    width: auto;
    height: 80px;
  }
  .header_inner .title .logo_img img {
    width: auto;
    height: 100%;
  }
  .header_inner .title .logo_txt {
    padding-left: 1em;
    color: #111;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: .1em;
  }
  .header_inner .h_cta {
    padding-top: 3rem;
  }
  .header_inner .h_cta_txt {
    margin-bottom: 1em;
    font-size: 12px;
  }
  .h_cta_tel a {
    color: #111;
    font-size: 40px;
    font-weight: bold;
  }

  /* fv */
  .fv {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url(images/fv.jpg) no-repeat center;
    background-size: cover;
    overflow: hidden;
    z-index: 1;
  }
  .fv::before {
    background: inherit;
    content: "";
    position: absolute;
    filter: blur(5px);
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    z-index: -1;
  }
  .fv_filter {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.7),rgba(255,255,255,0.2));
  }
  .fv_inner {
    position: relative;
    width: 100%;
    max-width: 1024px;
    height: 100%;
    margin: 0 auto;
  }
  .catch_box {
    position: absolute;
    top: 20%;
    /*color: #e70012;*/
    width: 100%;
    color: #111;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
  }
  .catch_box .catch1 {
    color: #e70012;
    font-size: 4vw;
    text-shadow: 0 0 8px #fff;
  }
  .catch_box .catch2 {
    color: #e70012;
    font-size: 4vw;
    text-shadow: 0 0 8px #fff;
  }
  .catch_box .catch3 {
    font-size: 3vw;
  }
  .catch_box .catch1 span,
  .catch_box .catch2 span,
  .catch_box .catch3 span {
    color: #111;
    font-size: 80%;
    text-shadow: 0 0 0;
  }
  .catch_box .lead_btn {
    margin-top: 4rem;
  }
  .catch_box .lead_btn a {
    display: inline-block;
    padding: 1em 2em;
    background-color: #fff;
    color: #e41625;
    font-size: 110%;
    font-weight: bold;
  }

  /* title */
  .kouka_inner h2,
  .tokutyo_inner h2 {
    color: #e70012;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
  }

  .merit_wrap {
    background-color: #e41525;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .merit_inner {
    width: 100%;
    max-width: 944px;
    margin: 0 auto;
  }
  .merit_inner h2 {
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
  }
  .merit_inner ul {
    margin-top: 4rem;
    padding-right: 4rem;
    padding-left: 4rem;
    color: #fff;
  }
  .merit_inner li {
    line-height: 1.8;
  }
  .merit_inner li + li {
    margin-top: 2rem;
  }
  .merit_inner li h3 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: .05em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  }

  .kouka_wrap {
    background: url(images/kouka_bg.jpg) no-repeat center bottom;
    background-size: cover;
  }
  .kouka_filter {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,1),rgba(255,255,255,0.5));
  }

  .kouka_inner {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 10rem;
    padding-right: 4rem;
    padding-bottom: 8rem;
    padding-left: 4rem;
  }
  .syukyaku {
    margin-top: 4rem;
    margin-right: 2em;
    margin-left: 2em;
    padding: 2em;
    background-color: #333;
    border-radius: 8px;
    color: #fff;
    line-height: 1.8;
  }
  .syukyaku h3 {
    margin-bottom: .5em;
    font-size: 120%;
    font-weight: bold;
  }
  .target {
    margin-top: 4rem;
    line-height: 1.8;
  }

  .tokutyo_wrap {
    margin-top: 10rem;
    margin-bottom: 8rem;
  }

  .tokutyo_inner {
    max-width: 1024px;
    margin: 0 auto;
    padding-right: 4rem;
    padding-bottom: 4rem;
    padding-left: 4rem;
  }
  .tokutyo_inner dl {
    margin-top: 4rem;
    line-height: 1.8;
  }
  .tokutyo_inner dt {
    color: #111;
    font-size: 120%;
    font-weight: bold;
  }
  .tokutyo_inner dd + dt {
    margin-top: 1.5em;
  }

  .pickup_img {
    text-align: center;
  }
  .pickup_img img {
    max-width: 100%;
    height: auto;
  }

  .cta {
    width: 640px;
    margin: 0 auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .cta p {
    color: #fff;
  }
  .cta h2 {
    margin-bottom: 1em;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
  }
  .cta h2 span {
    display: block;
    margin-bottom: 1em;
    font-size: 20px;
  }
  .cta_btn {
    margin-top: 3rem;
  }
  .cta_btn a {
    display: block;
    padding: 1em 0;
    background-color: #fff;
    color: #111;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  .cta_btn.tel a {
    background-color: inherit;
    padding: 0;
    color: #fffec2;
    font-size: 44px;
    letter-spacing: .05em;
    box-shadow: 0 0 0;
  }
  .cta_btn.mail a {
    font-size: 20px;
  }
  .cta_btn.mail a:hover {
    background-color: #e41625;
    color: #fff;
  }

  /* page */
  .page_body {
    max-width: 1024px;
    margin: 4rem auto;
    padding-right: 4rem;
    padding-left: 4rem;
  }
  .page_body section + section {
    margin-top: 8rem;
  }

  .text_box {
    margin-top: 3rem;
    line-height: 1.8;
  }


  .info_table {
    width: 100%;
  }
  .info_table th, .info_table td {
    padding: 1em;
    line-height: 1.8;
  }
  .info_table th {
    white-space: nowrap;
    font-weight: normal;
    text-align: left;
    vertical-align: top;
  }
  .torihiki_list {
    display: flex;
    flex-wrap: wrap;
  }
  .torihiki_list li::after {
    content: " / ";
  }
  .accessmap_wrap {
    margin-top: 4rem;
  }
  .accessmap {
    margin-top: 3rem;
  }
  .accessmap iframe {
    width: 100%;
    height: 400px;
  }

}/* end TAB & PC */
/* -------------------------------------------------------
for TAB only
---------------------------------------------------------- */
@media screen and (min-width:600px) and (max-width:1023px){
  .ssp, .pc {display: none;}
  .fv {
    height: 50vh;
  }
  .catch_box .catch1 {
    font-size: 6vw;
  }
  .catch_box .catch2 {
    font-size: 6vw;
  }
  .catch_box .catch3 {
    font-size: 5vw;
  }
}/* end TAB only */
/* -------------------------------------------------------
for PC
---------------------------------------------------------- */
@media only screen and (min-width:1024px){
  body {
    zoom:1;
  }
  .ssp, .tab {display: none;}

}/* end PC */

/* -------------------------------------------------------
common
---------------------------------------------------------- */
.fc_y {color: #ffff00 !important;}

.fs80 {font-size:80%;}
.fs90 {font-size:90%;}
.fs100 {font-size:100%;}
.fs120 {font-size:120%;}
.fs150 {font-size:150%;}

.lh18 {line-height:1.8;}
.lh20 {line-height:2.0;}

.mgt1em {margin-top:1em;}
.mgt2em {margin-top:2em;}
.mgb1em {margin-bottom:1em;}
.mgb2em {margin-bottom:2em;}
.mgt1rem {margin-top:1rem;}
.mgt2rem {margin-top:2rem;}
.mgb1rem {margin-bottom:1rem;}
.mgb2rem {margin-bottom:2rem;}

b, strong, .bold {font-weight: bold;}

.tac {text-align:center;}
.tal {text-align:left;}
.tar {text-align:right;}
