:root {
  --main-color: #16316D;
  --sub-color: #1D8FDA;
  --accent-color-1: #2AA08F;
}





/*---------------------------------
common
--------------------------------*/

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  color: #202020;
  line-height: 1.8;
  letter-spacing: .025em;
  background-color: #E6F5FF;
}


/*---------------------------------
font
--------------------------------*/
.en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}


/*---------------------------------
link
--------------------------------*/
/*normal*/
a {
  text-decoration: none;
  color: var(--main-color);
}

a:visited {
  text-decoration: none;
  color: var(--main-color);
}

a:hover {
  text-decoration: none;
  color: var(--sub-color);
}

a:active {
  text-decoration: none;
  color: var(--sub-color);
}

/* img */
a.alpha img:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.70;
  opacity: 0.70;
}

a,
a::after,
a::before,
a img,
input {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

/*---------------------------------
css layout
--------------------------------*/

/* スマホ用 750px以下に適用されるCSS */

* html body {
  overflow: hidden;
}

html,
body {
  background: url(../images/bg_sp.webp) 0 center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

body {
  margin: 0 auto;
}

.wrap {
  overflow: hidden;
}

.wrap:after {
  clear: both;
  display: block;
  content: "";
}


.hidden-xs {
  display: none !important;
}

.visible-xs {
  display: inherit !important;
}

.c {
  text-align: center;
}

.l {
  text-align: left;
}

.r {
  text-align: right;
}


/* PC用 751px以上に適用されるCSS */
@media (min-width: 751px) {

  html,
  body {
    min-width: 1300px;
    background: url(../images/bg_pc.webp) 0 center no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }

  .innr {
    margin: 0 auto;
    padding: 0;
  }

  .hidden-xs {
    display: inherit !important;
  }

  .visible-xs {
    display: none !important;
  }
}


/*---------------------------------
section
--------------------------------*/

section.mb120 {
  margin-bottom: 21.333vw;
}

section.pd150,
section.pd200 {
  padding: 0 2.564vw;
}

/* PC用 751px以上に適用されるCSS */
@media (min-width: 751px) {

  section.mb120 {
    margin-bottom: 120px;
  }

  section.pd150 {
    padding: 0 150px;
  }
  section.pd200 {
    padding: 0 200px;
  }

  section.pd150 .innr,
  section.pd200 .innr {
    max-width: 1236px;
  }

}


/*---------------------------------
btn
--------------------------------*/
.btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.128vw;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  border-radius: 100px;
  transition: 0.3s;
  background: linear-gradient(90deg, rgba(29, 143, 218, 1) 0%, rgba(51, 191, 171, 1) 50%, rgba(29, 143, 218, 1) 100%);
  background-size: 200% 100%;
  padding: 1em 0;
  margin: 0 auto;
  width: 85.333vw;
}

.btn a::after {
  content: "";
  background: url(../images/icon-arrw.svg) 0 0 no-repeat;
  background-size: contain;
  filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(307deg) brightness(104%) contrast(101%);
  width: 5.333vw;
  height: 4.533vw;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 5%;
}

.btn a:hover {
  background-position: 100% 0;
  transition: 0.3s;
}


.btn.s-btn a {
  font-size: 4.102vw;
  width: 48vw;
}

.btn.s-btn a::after {
  width: 3.589vw;
  height: 3.076vw;
  right: 7%;
}

.btn.s-btn a span {
  padding-right: 2vw;
}


/* PC用 751px以上に適用されるCSS */
@media (min-width: 751px) {

  .btn a {
    padding: 1.2em 0;
    font-size: 1.25rem;
    width: 320px;
  }

  .btn a::after {
    width: 18px;
    height: 15.3px;
    right: 6%;
  }

  .btn.s-btn a {
    padding: 1em 0;
    font-size: 1rem;
    width: 180px;
  }

  .btn.s-btn a::after {
    width: 14px;
    height: 12px;
  }

  .btn.s-btn a span {
    padding-right: 10px;
  }

}


/*---------------------------------
title
--------------------------------*/
/* スマホ用 750px以下に適用されるCSS */
.ttl_area {
  padding-left: 1vw;
}

.ttl_area h2 {
  font-size: 7.692vw;
  font-weight: 600;
  color: var(--main-color);
  line-height: 1.6;
  margin-bottom: 10.256vw;
}

.ttl_area h2.s-ttl {
  font-size: 6.153vw;
}

.ttl_area h2 span {
  font-size: 2.82vw;
  color: var(--sub-color);
  display: block;
}

.ttl_area h2.s-ttl span {
  font-size: 2.564vw;
}

.two-column_wrap .ttl_area {
  padding-top: 6.153vw;
}

/* PC用 751px以上に適用されるCSS */
@media (min-width: 751px) {
  .ttl_area {
    padding-left: 0;
  }

  .ttl_area h2 {
    font-size: 2.625rem;
    margin-bottom: 40px;
  }

  .ttl_area h2.s-ttl {
    font-size: 1.625rem;
  }

  .ttl_area h2 span {
    font-size: .8125rem;
  }

  .ttl_area h2.s-ttl span {
    font-size: .6875rem;
  }

  .two-column_wrap .ttl_area {
    padding-top: 30px;
  }

}

/*---------------------------------
p list
--------------------------------*/
/* スマホ用 750px以下に適用されるCSS */

.txt_area p,
ul.list {
  padding-bottom: 1rem;
}

ul.list li {
  position: relative;
  padding-left: 2rem;
}

ul.list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--sub-color);
  position: absolute;
  top: .8rem;
  left: 1.1rem;
}

/* PC用 751px以上に適用されるCSS */
@media (min-width: 751px) {}



/*---------------------------------
pagetop
--------------------------------*/
/* スマホ用 750px以下に適用されるCSS */
.pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 998;
  display: none;
}

.pagetop a {
  width: 11vw;
  height: 11vw;
  border-radius: 50%;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagetop a img {
  filter: invert(100%) sepia(0%) saturate(7436%) hue-rotate(328deg) brightness(102%) contrast(83%);
  transform: rotate(-90deg);
  width: 3.6vw;
}

/* PC用 751px以上に適用されるCSS */
@media (min-width: 751px) {
  .pagetop {
    right: 27px;
    bottom: 30px;
  }

  .pagetop a {
    width: 46px;
    height: 46px;
  }

  .pagetop a img {
    width: 18px;
  }
}



/*---------------------------------
time_table
--------------------------------*/
.time_table table {
  font-size: 3.466vw;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--main-color);
  border-spacing: 0;
}

.time_table table thead th {
  text-align: center;
  padding: 1.15vw 2vw;
  background-color: #F4FBFF;
  border-bottom: 1px solid var(--main-color);
  border-right: 1px solid var(--main-color);
}

.time_table table tbody tr th,
.time_table table tbody tr td {
  border-bottom: 1px solid var(--main-color);
  border-right: 1px solid var(--main-color);
}

.time_table table tbody tr:last-child th,
.time_table table tbody tr:last-child td {
  border-bottom: none;
}

.time_table table tbody tr th {
  text-align: right;
  padding: 0.95vw 1.8vw;
  letter-spacing: 0.05vw;
  width: 26.5vw;
}

.time_table table tbody tr td {
  color: var(--accent-color-1);
  text-align: center;
  padding: 0 2vw;
  vertical-align: middle;
}

.time_table table thead th:last-child,
.time_table table tbody tr td:last-child {
  border-right: 0;
}

.time_table .att {
  font-size: 3.466vw;
  margin-top: 2vw;
  line-height: 1.4;
}

.time_table dl {
  font-size: 3.466vw;
  font-weight: 500;
  border: 1px solid var(--main-color);
  border-radius: 8px;
  display: table;
  margin: 2vw auto 0;
}

.time_table dl dt,
.time_table dl dd {
  display: table-cell;
  padding: 1vw 3vw;
}

.time_table dl dt {
  background-color: var(--main-color);
  color: #fff;
  border-bottom-left-radius: 7px;
  border-top-left-radius: 7px;
}

.time_table dl dd {
  color: var(--main-color);
}


@media (min-width: 751px) {
  .time_table {
    margin-left: auto;
  }

  .time_table table {
    font-size: 1rem;
  }

  .time_table table thead th {
    padding: 4px;
  }

  .time_table table tbody tr th {
    padding: 4px 6px;
    letter-spacing: 0.03em;
    width: 30%;
    text-align: center;
  }

  .time_table table tbody tr td {
    padding: 4px;
  }

  .time_table .att {
    font-size: 0.875rem;
    margin-top: 8px;
  }

  .time_table dl {
    font-size: 0.8125rem;
    border-radius: 10px;
    margin: 15px 0 0 auto;
  }

  .time_table dl dt,
  .time_table dl dd {
    padding: 6px 12px;
  }

  .time_table dl dt {
    border-bottom-left-radius: 9px;
    border-top-left-radius: 9px;
  }
}




/*---------------------------------
header
--------------------------------*/
/* スマホ用 750px以下に適用されるCSS */

header {
  position: relative;
  margin-bottom: 5.333vw;
}

header .header_inner {
  padding: 0;
  margin: 0 auto;
  height: auto;
  width: 100%;
  display: flex;
}

header .header_inner .logo,
header .header_inner .sp_nav {
  background-color: #fff;
  height: 16vw;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
}

header .header_inner .logo {
  border-bottom-right-radius: 12px;
}

header .header_inner .sp_nav {
  border-bottom-left-radius: 12px;
}


header .header_inner .logo a {
  position: relative;
  display: inline-block;
  width: 51.2vw;
  height: 9.8666vw;
  margin: 2.666vw 4.533vw 0 4vw;
}

header .header_inner .logo a span {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2.666vw;
  color: #999999;
}

header .header_inner .logo a img {
  height: 9.8666vw;
}



header .header_inner .sp_nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  display: flex;
}

header .header_inner .sp_nav hr {
  border: none;
  border-left: 1px solid #ccc;
  height: 10.666vw;
  width: 1px;
  margin-top: 2.66vw;
}

header .header_inner .sp_nav .tel_btn a {
  height: 16vw;
  width: 16vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .header_inner .sp_nav .tel_btn img {
  filter: invert(57%) sepia(19%) saturate(1448%) hue-rotate(122deg) brightness(89%) contrast(85%);
  width: 8vw;
  height: 8vw;
}

header .header_inner .sp_nav .menu_btn {
  padding: 0 0 2.666vw 0;
  height: 16vw;
  width: 16vw;
  transition: 0.4s;
}

header .header_inner .sp_nav .menu_btn:hover {
  cursor: pointer;
}

header .header_inner .sp_nav .menu_btn .border {
  display: block;
  margin: 0 auto;
  margin-top: 3.2vw;
  height: 5.333vw;
  width: 8vw;
  position: relative;
}

header .header_inner .sp_nav .menu_btn .border span {
  background: var(--accent-color-1);
  display: inline-block;
  position: absolute;
  left: 0;
  height: 1px;
  width: 100%;
}

header .header_inner .sp_nav .menu_btn .border span:nth-child(1) {
  top: 0;
}

header .header_inner .sp_nav .menu_btn .border span:nth-child(2) {
  top: 50%;
}

header .header_inner .sp_nav .menu_btn .border span:nth-child(3) {
  bottom: 0;
}

header .header_inner .sp_nav .menu_btn .text {
  color: var(--main-color);
  display: block;
  font-size: 2.666vw;
  text-align: center;
  line-height: 1;
  width: 100%;
  transition: 0.4s;
  letter-spacing: .1em;
  padding-top: 2vw;
}

header .header_inner .sp_nav .menu_btn.is-scroll {
  transition: 0.4s;
  background: none;
}


header .header_inner .sp_nav .menu_btn.is-scroll .text {
  color: var(--main-color);
}

header .header_inner .sp_nav .menu_btn.is-open {
  z-index: 99999;
}

header .header_inner .sp_nav .menu_btn.is-open .border span:nth-child(1) {
  -webkit-animation: open-bar01 0.5s forwards;
  animation: open-bar01 0.5s forwards;
}

header .header_inner .sp_nav .menu_btn.is-open .border span:nth-child(2) {
  opacity: 0;
}

header .header_inner .sp_nav .menu_btn.is-open .border span:nth-child(3) {
  -webkit-animation: open-bar03 0.5s forwards;
  animation: open-bar03 0.5s forwards;
}

@-webkit-keyframes open-bar01 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(2.6vw);
  }

  100% {
    transform: translateY(2.6vw) rotate(30deg);
  }
}

@keyframes open-bar01 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(2.6vw);
  }

  100% {
    transform: translateY(2.6vw) rotate(30deg);
  }
}

@-webkit-keyframes open-bar03 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2.6vw);
  }

  100% {
    transform: translateY(-2.6vw) rotate(-30deg);
  }
}

@keyframes open-bar03 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2.6vw);
  }

  100% {
    transform: translateY(-2.6vw) rotate(-30deg);
  }
}


header .header_inner .sp_nav .menu_btn.is-close .border span:nth-child(1) {
  -webkit-animation: close-bar01 0.5s forwards;
  animation: close-bar01 0.5s forwards;
}

header .header_inner .sp_nav .menu_btn.is-close .border span:nth-child(3) {
  -webkit-animation: close-bar03 0.5s forwards;
  animation: close-bar03 0.5s forwards;
}

@-webkit-keyframes close-bar01 {
  0% {
    transform: translateY(2.6vw) rotate(-30deg);
  }

  50% {
    transform: translateY(2.6vw) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes close-bar01 {
  0% {
    transform: translateY(2.6vw) rotate(-30deg);
  }

  50% {
    transform: translateY(2.6vw) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@-webkit-keyframes close-bar03 {
  0% {
    transform: translateY(-2.6vw) rotate(30deg);
  }

  50% {
    transform: translateY(-2.6vw) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes close-bar03 {
  0% {
    transform: translateY(-2.6vw) rotate(30deg);
  }

  50% {
    transform: translateY(-2.6vw) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

header .header_inner .sp_nav .g_nav_sp {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  z-index: 9998;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
}

header .header_inner .sp_nav .g_nav_sp.is-open {
  opacity: 1;
  visibility: visible;
  transition: 0.8s;
}

header .header_inner .sp_nav .g_nav_sp .g_nav_sp_inner .menu_logo {
  padding: 3.3vw 4vw;
}

header .header_inner .sp_nav .g_nav_sp .g_nav_sp_inner .menu_logo img {
  height: 8.56vw;
}

header .header_inner .sp_nav .g_nav_sp .g_nav_sp_inner nav ul {
  margin: 5vw 9.866vw 9.333vw;
  letter-spacing: .1em;
}

header .header_inner .sp_nav .g_nav_sp .g_nav_sp_inner nav ul li a {
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  font-size: 4.266vw;
  padding: 3vw;
  position: relative;
}


header .header_inner .sp_nav .g_nav_sp .g_nav_sp_inner nav ul li a::after {
  content: "";
  background: url(../images/icon-arrw.svg) 0 0 no-repeat;
  filter: invert(40%) sepia(89%) saturate(499%) hue-rotate(160deg) brightness(105%) contrast(92%);
  background-size: contain;
  width: 4.266vw;
  height: 3.599vw;
  position: absolute;
  right: 3vw;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

header .header_inner .sp_nav .g_nav_sp .g_nav_sp_inner .btn.tel {
  text-align: center;
  margin: 0 0 5.333vw;
}

header .header_inner .sp_nav .g_nav_sp .g_nav_sp_inner .btn.tel dt {
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 2vw;
}

header .header_inner .sp_nav .g_nav_sp .g_nav_sp_inner .btn.tel dd {
  color: var(--main-color);
  font-size: 3.466vw;
  margin-top: 1.5vw;
}

header .header_inner .sp_nav .g_nav_sp .g_nav_sp_inner .btn.tel a {
  font-size: 6.933vw;
  letter-spacing: .05em;
  padding: .6em 0;
  width: 80vw;
}

header .header_inner .sp_nav .g_nav_sp .g_nav_sp_inner .btn.tel a span {
  padding-left: 2.564vw;
}

header .header_inner .sp_nav .g_nav_sp .g_nav_sp_inner .btn.tel a::before {
  content: "";
  background: url(../images/icon-call.svg) 0 0 no-repeat;
  background-size: contain;
  filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(307deg) brightness(104%) contrast(101%);
  width: 8vw;
  height: 8vw;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 5%;
}

header .header_inner .sp_nav .g_nav_sp .g_nav_sp_inner .btn.tel a::after {
  content: none;
}

header .header_inner .sp_nav .g_nav_sp .g_nav_sp_inner .time_table {
  margin: 0 5.333vw 10vw;
}


header .header_inner .pc_nav {
  display: none;
}


/* PC用 751px以上に適用されるCSS */
@media (min-width: 751px) {

  header {
    margin-bottom: 50px;
  }

  header .header_inner {
    min-width: 1300px;
  }

  header .header_inner .logo,
  header .header_inner .pc_nav {
    height: 100px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
  }

  header .header_inner .logo {
    border-bottom-right-radius: 20px;
  }

  header .header_inner .pc_nav {
    background-color: #fff;
    border-bottom-left-radius: 20px;
  }


  header .header_inner .logo a {
    width: 336px;
    height: 56px;
    margin: 22px 50px 0 40px;
  }

  header .header_inner .logo a span {
    font-size: 0.75rem;
  }

  header .header_inner .logo a img {
    height: 56px;
  }

  header .header_inner .sp_nav {
    display: none;
  }

  header .header_inner .pc_nav {
    display: block;
    margin-left: auto;
    padding: 20px 40px 0 50px;
  }

  header .header_inner .pc_nav nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header .header_inner .pc_nav nav ul {
    display: flex;
    justify-content: flex-start;
    border-right: 1px solid #CCCCCC;
    line-height: 60px;
    font-weight: 500;
  }

  header .header_inner .pc_nav nav ul li {
    padding-right: 25px;
  }

  header .header_inner .pc_nav nav ul li:last-child {
    padding-right: 30px;
  }

  header .header_inner .pc_nav nav ul li .now {
    color: var(--sub-color);
    font-weight: 700;
  }

  header .header_inner .pc_nav nav .tel {
    position: relative;
    line-height: 1;
    padding-left: 56px;
    margin-left: 30px;
  }

  header .header_inner .pc_nav nav .tel .en {
    font-size: 1.5rem;
    color: var(--main-color);
  }

  header .header_inner .pc_nav nav .tel .time {
    font-size: 0.625rem;
  }

  header .header_inner .pc_nav nav .tel::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    background-image: url(../images/icon-call.svg);
    filter: invert(57%) sepia(19%) saturate(1448%) hue-rotate(122deg) brightness(89%) contrast(85%);
    width: 46px;
    height: 46px;
  }

}



/*---------------------------------
footer
--------------------------------*/
/* スマホ用 750px以下に適用されるCSS */

footer {
  padding: 2.666vw;
}

footer .footer_innr {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
  padding: 2.666vw;
}

footer .footer_innr .info {
  position: relative;
}

footer .footer_innr .info #copyright {
  position: absolute;
  bottom: 8vw;
  right: 0;
  left: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 3.333vw;
  color: #999999;
}

footer .footer_innr .info .logo {
  width: 53.333vw;
  margin: 12vw auto 5.333vw;
}

footer .footer_innr .info .department {
  display: table;
  margin: 0 auto 4.8vw auto;
  line-height: 1.4;
  align-items: center;
  font-size: 3.333vw;
}

footer .footer_innr .info .department dt,
footer .footer_innr .info .department dd {
  display: table-cell;
}

footer .footer_innr .info .department dt {
  border: 1px solid var(--accent-color-1);
  background-color: #F4FBFF;
  color: var(--accent-color-1);
  border-radius: 3px;
  padding: 2px 6px;
}

footer .footer_innr .info .department dd {
  color: var(--accent-color-1);
  font-weight: 500;
  padding-left: 2.666vw;
}

footer .footer_innr .info .address {
  margin-bottom: 8vw;
}

footer .footer_innr .info .address address {
  font-style: normal;
  font-size: 3.333vw;
  text-align: center;
  padding-bottom: 3.2vw;
}


footer .footer_innr .info .address .btn a {
  font-size: 3.333vw;
  padding: 0.8em 0 0.9em;
  width: 48vw;
}

footer .footer_innr .info .address .btn a::after {
  width: 3.076vw;
  height: 2.564vw;
}

footer .footer_innr .info .address .btn a span {
  padding-right: 1.333vw;
}

footer .footer_innr .info .howto {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 5.128vw;
  margin-bottom: 5.128vw;
}

footer .footer_innr .info .howto dl:first-child {
  padding-bottom: 3.846vw;
  margin-bottom: 3.846vw;
  border-bottom: 1px solid #ccc;
}

footer .footer_innr .info .howto dl dt {
  font-weight: 700;
  font-size: 3.846vw;
  color: var(--main-color);
  padding-bottom: 0.4em;
}

footer .footer_innr .info .howto dl dd {
  font-size: 3.333vw;
}

footer .footer_innr .info .pc_tel {
  display: none;
}

footer .footer_innr .info .btn.tel {
  text-align: center;
  margin: 0 0 5.333vw;
}

footer .footer_innr .info .btn.tel dt {
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 2vw;
}

footer .footer_innr .info .btn.tel dd {
  color: var(--main-color);
  font-size: 3.466vw;
  margin-top: 1.5vw;
}

footer .footer_innr .info .btn.tel a {
  font-size: 6.933vw;
  letter-spacing: .05em;
  padding: .6em 0;
  width: 80vw;
}

footer .footer_innr .info .btn.tel a span {
  padding-left: 2.564vw;
}

footer .footer_innr .info .btn.tel a::before {
  content: "";
  background: url(../images/icon-call.svg) 0 0 no-repeat;
  background-size: contain;
  filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(307deg) brightness(104%) contrast(101%);
  width: 8vw;
  height: 8vw;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 5%;
}

footer .footer_innr .info .btn.tel a::after {
  content: none;
}

footer .footer_innr .info .time_table {
  padding-bottom: 24vw;
}


footer .footer_innr .map iframe {
  width: 100%;
  height: 80vw;
  border-radius: 8px;
}

/* PC用 751px以上に適用されるCSS */
@media (min-width: 751px) {
  footer {
    padding: 50px;
  }

  footer .footer_innr {
    border-radius: 20px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
    max-width: 1436px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 50px;
  }

  footer .footer_innr>div {
    width: 47.5%;
  }

  footer .footer_innr .info {
    margin-left: 10px;
  }

  footer .footer_innr .info #copyright {
    bottom: 0;
    margin: 0;
    text-align: left;
    font-size: 0.8125rem;
  }

  footer .footer_innr .info .logo {
    width: 406px;
    margin: 20px auto 25px;
  }

  footer .footer_innr .info .department {
    margin: 0 auto 15px auto;
    font-size: 1rem;
  }

  footer .footer_innr .info .department dd {
    padding-left: 12px;
  }

  footer .footer_innr .info .address {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  footer .footer_innr .info .address>div {
    align-items: center;
  }

  footer .footer_innr .info .address address {
    font-size: 1rem;
    text-align: left;
    padding-bottom: 0;
  }

  footer .footer_innr .info .address .btn a {
    font-size: 0.8125rem;
    width: 180px;
  }

  footer .footer_innr .info .address .btn a::after {
    width: 12px;
    height: 10px;
  }

  footer .footer_innr .info .address .btn a span {
    padding-right: 8px;
  }

  footer .footer_innr .info .howto {
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    padding: 25px 35px;
    margin-bottom: 20px;
  }

  footer .footer_innr .info .howto dl:first-child {
    width: 43%;
    border-bottom: none;
    border-right: 1px solid #ccc;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  footer .footer_innr .info .howto dl:last-child {
    width: 57%;
    padding-left: 25px;
  }

  footer .footer_innr .info .howto dl dt {
    font-size: 1rem;
  }

  footer .footer_innr .info .howto dl dd {
    font-size: 0.8125rem;
  }

  footer .footer_innr .info .pc_tel {
    border-radius: 10px;
    background-color: #F4FBFF;
    margin-bottom: 20px;
    padding: 27px 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
  }


  footer .footer_innr .info .pc_tel dt {
    font-weight: 700;
    padding-right: 35px;
  }

  footer .footer_innr .info .pc_tel dd {
    position: relative;
    line-height: 1;
    padding-left: 56px;
  }

  footer .footer_innr .info .pc_tel dd::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/icon-call.svg);
    filter: invert(57%) sepia(19%) saturate(1448%) hue-rotate(122deg) brightness(89%) contrast(85%);
    width: 46px;
    height: 46px;
  }

  footer .footer_innr .info .pc_tel dd .en {
    font-size: 1.875rem;
    letter-spacing: .05em;
  }

  footer .footer_innr .info .pc_tel dd .time {
    font-size: .8125rem;
  }

  footer .footer_innr .info .time_table {
    padding-bottom: 0;
  }

  footer .footer_innr .map iframe {
    height: 100%;
    border-radius: 10px;
  }

}




/*------------- second -------------*/




/*---------------------------------
page_ttl
--------------------------------*/
/* スマホ用 750px以下に適用されるCSS */

#page_ttl {
  padding: 0 2.564vw 2.564vw;
}

#page_ttl .innr {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
  padding: 0;
  height: 74.666vw;
  position: relative;
}

#page_ttl h1 {
  font-size: 7.6vw;
  font-weight: 500;
  color: var(--main-color);
  position: absolute;
  bottom: 20px;
  left: 25px;
}

#page_ttl h1 span {
  font-size: 2.82vw;
  letter-spacing: .1em;
  display: block;
  color: var(--sub-color);
}

/* PC用 751px以上に適用されるCSS */
@media (min-width: 751px) {

  #page_ttl {
    padding: 0 50px 15px;
  }

  #page_ttl .innr {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
    max-width: 1436px;
    padding: 50px;
    height: 280px;
    display: flex;
    align-items: center;
    position: inherit;
  }

  #page_ttl h1 {
    font-size: 2.875rem;
    position: inherit;
    bottom: inherit;
    left: inherit;
  }

  #page_ttl h1 span {
    font-size: 1rem;
  }

}




/*---------------------------------
pankuzu
--------------------------------*/
/* スマホ用 750px以下に適用されるCSS */
#pankuzu {
  padding: 0 3.589vw;
}

#pankuzu .innr {
  margin: 0 auto;
  padding: 0 0 7.6vw 0;
}

#pankuzu ul {
  display: flex;
  justify-content: start;
  font-size: 3.333vw;
}

#pankuzu ul li {
  padding-right: 3.846vw;
}

#pankuzu ul li::after {
  content: url(../images/icon-arrw_pankuzu.svg);
  padding-left: 3.846vw;
}

#pankuzu ul li:last-child:after {
  content: none;
}

#pankuzu ul li .now {
  font-weight: 700;
  color: var(--sub-color);
}

#pankuzu ul li.home a {
  position: relative;
  padding-left: 6vw;
}

#pankuzu ul li.home a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 0;
  content: "";
  background: url(../images/icon-home.svg) 0 0 no-repeat;
  width: 4.102vw;
  height: 4.102vw;
}


/* PC用 751px以上に適用されるCSS */
@media (min-width: 751px) {
  #pankuzu {
    padding: 0 50px;
  }

  #pankuzu .innr {
    max-width: 1436px;
    padding: 0 20px 60px;
  }

  #pankuzu ul {
    font-size: .8125rem;
  }

  #pankuzu ul li {
    padding-right: 1em;
  }

  #pankuzu ul li::after {
    padding-left: 1em;
  }

  #pankuzu ul li.home a {
    padding-left: 22px;
  }

  #pankuzu ul li.home a::before {
    width: 16px;
    height: 16px;
  }
}



/*---------------------------------
two-column
--------------------------------*/
/* スマホ用 750px以下に適用されるCSS */

.two-column_wrap {
  padding: 0 2.564vw;
}

.two-column_wrap>div.navi {
  margin-bottom: 40px;
}

.two-column_wrap>div.navi ul {
  border-radius: 12px;
  border: 1px solid var(--main-color);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.two-column_wrap>div.navi ul li {
  width: 50%;
}

.two-column_wrap>div.navi ul li:nth-of-type(odd) {
  border-right: 1px solid var(--main-color);
}

.two-column_wrap>div.navi li a {
  position: relative;
  padding-left: 10.933vw;
  font-size: 3.333vw;
  font-weight: 600;
  height: 13.333vw;
  display: flex;
  align-items: center;
}

.two-column_wrap>div.navi li a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 5.733vw;
  content: "";
  background: url(../images/icon-arrw.svg) 0 0 no-repeat;
  filter: invert(44%) sepia(94%) saturate(513%) hue-rotate(163deg) brightness(92%) contrast(95%);
  transform: rotate(90deg);
  width: 1.973vw;
  height: 1.653vw;
}

.two-column_wrap>div.navi li a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 4vw;
  width: 5.333vw;
  height: 5.333vw;
  content: '';
  border: 1px solid #1D8FDA;
  border-radius: 100%;
}

/* PC用 751px以上に適用されるCSS */
@media (min-width: 751px) {
  .two-column_wrap {
    padding: 0 50px;
    max-width: 1536px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .two-column_wrap>div.navi {
    width: 22%;
    margin-bottom: 0;
  }

  .two-column_wrap>div.cnt {
    width: 78%;
  }

  .two-column_wrap>div.navi ul {
    border-radius: 0;
    border: none;
    display: inherit;
  }

  .two-column_wrap>div.navi li {
    width: inherit !important;
    margin-bottom: 20px;
  }

  .two-column_wrap>div.navi ul li:nth-of-type(odd) {
    border-right: none;
  }

  .two-column_wrap>div.navi li a {
    position: relative;
    padding-left: 34px;
    font-size: 1rem;
    height: auto;
    display: inherit;
  }

  .two-column_wrap>div.navi li a::before {
    position: absolute;
    left: 7px;
    transform: none;
    width: 9.5px;
    height: 8px;
  }

  .two-column_wrap>div.navi li a::after {
    left: 0;
    width: 24px;
    height: 24px;
  }


}