@charset "UTF-8";
/*
Author: Natsumi Sunakawa from BASE 8.
*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "游ゴシック Medium", meiryo, sans-serif;
  line-height: 1.5;
  color: #000;
}
@media print {
  body {
    width: 1000px;
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform-origin: 0 0;
  }
}

a {
  color: #000;
  text-decoration: none;
}

a,
a::before,
a::after {
  transition: all .5s;
}

a:hover {
  text-decoration: none;
  color: #FF9900;
}

a:hover img {
  opacity: .8;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 22px;
  font-size: 2.2rem;
  color: #01226B;
  font-family: "fot-udkakugo-large-pr6n", sans-serif;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

h2 {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "fot-udkakugo-large-pr6n", sans-serif;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

p {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

ol li {
  margin-bottom: 16px;
  margin-bottom: 1.6rem;
}

@media only screen and (min-width: 768px) {
  .pc-hidden {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .sp-hidden {
    display: none;
  }
}

.wrap {
  max-width: 1480px;
  margin-right: auto;
  margin-left: auto;
  margin: 0 auto;
}

.row {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  margin: 0 auto;
}

.link-btn {
  display: inline-block;
  width: auto;
  background: #01226B;
}
.link-btn a {
  display: block;
  padding: 16px 40px 16px 16px;
  padding: 1.6rem 4rem 1.6rem 1.6rem;
  background: #01226B;
  color: #fff;
  font-family: "fot-udkakugo-large-pr6n", sans-serif;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .link-btn a {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 8px;
  }
}
.link-btn a i {
  margin-right: 16px;
}
.link-btn a:hover {
  background: #FF9900;
  color: #01226B;
  font-weight: 600;
}
.link-btn a::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: '.';
  color: transparent;
  background: #FF9900;
  visibility: none;
  opacity: 0;
  z-index: -1;
}
.link-btn a:hover::after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.submit-btn {
  width: 25%;
  margin: 0 auto 32px;
}
.submit-btn input[type="submit"] {
  display: block;
  padding: 16px 40px;
  padding: 1.6rem 4rem;
  background: #01226B;
  color: #fff;
  font-family: "fot-udkakugo-large-pr6n", sans-serif;
  letter-spacing: 5px;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.submit-btn input[type="submit"]:hover {
  cursor: pointer;
}

/*-----table-----*/
table {
  width: 98%;
  margin: 0 auto 32px;
  border: none;
  border-spacing: 0;
}
table th,
table td {
  padding: 16px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #ccc;
  vertical-align: top;
}
@media only screen and (max-width: 459px) {
  table th,
  table td {
    display: block;
  }
}
table th {
  background: #EAE9E7;
  width: 20%;
  text-align: left;
  font-weight: 500;
}
@media only screen and (max-width: 459px) {
  table th {
    width: 100%;
  }
}

/*-----form-----*/
input,
textarea,
select {
  margin-bottom: 4px;
  padding: 2px;
  border: 1px solid #EAE9E7;
  border-radius: 1px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

input:focus,
textarea:focus,
select:focus {
  border: 1px solid #01226B;
  box-shadow: 0 0 2px #01226B;
}

input[type="text"] {
  width: 50%;
}

textarea {
  width: 95%;
}

input.input-adress {
  -webkit-transition: width .5s;
  transition: width .5s;
}

input.input-zip1 {
  width: 15%;
}

input.input-zip2,
input.input-birthyear,
input.input-gradyear {
  width: 17%;
}

input.input-adress:focus,
input.input-schoolname:focus,
input.input-dept1:focus,
input.input-dept2:focus {
  width: 95%;
}

input.input-email:focus {
  width: 70%;
}

/*----------header----------*/
.site-header {
  border-bottom: 1px solid #EAE9E7;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .site-header {
    position: static;
  }
}
.site-header .site-header-bloc {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .site-header .site-header-bloc {
    display: block;
  }
}
.site-header .site-header-bloc h1 {
  max-width: 264px;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .site-header .site-header-bloc h1 {
    text-align: center;
    margin: 0 auto;
  }
}
.site-header .site-header-bloc nav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 80px;
  min-height: 8rem;
}
@media only screen and (max-width: 459px) {
  .site-header .site-header-bloc nav ul {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.site-header .site-header-bloc nav ul li {
  flex-shrink: 1;
  height: 100%;
  text-align: center;
  border-right: 1px solid #EAE9E7;
}
@media only screen and (max-width: 459px) {
  .site-header .site-header-bloc nav ul li {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.site-header .site-header-bloc nav ul li a {
  display: inline-block;
  padding: 16px 32px;
  padding: 1.6rem 3.2rem;
  vertical-align: middle;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.site-header .site-header-bloc nav ul li a:hover {
  background: #eee;
}
.site-header .site-header-bloc nav ul li a::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 1px;
  content: '.';
  color: transparent;
  background: #eee;
  visibility: none;
  opacity: 0;
  z-index: -1;
}
.site-header .site-header-bloc nav ul li a:hover::after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.site-header .site-header-bloc nav ul li:nth-child(1) img {
  max-width: 108px;
}
.site-header .site-header-bloc nav ul li:nth-child(2) img {
  max-width: 102px;
}
.site-header .site-header-bloc nav ul li:nth-child(3) img {
  max-width: 106px;
}
.site-header .site-header-bloc nav ul li:nth-child(4) img {
  max-width: 113px;
}
.site-header .site-header-bloc nav ul li:first-child {
  border-left: 1px solid #EAE9E7;
}

/*----------site-main----------*/
.site-main {
  padding-top: 85px;
  padding-top: 8.5rem;
}
@media only screen and (max-width: 767px) {
  .site-main {
    padding-top: 16px;
  }
}

.site-content-wrap {
  max-width: 1480px;
  margin-right: auto;
  margin-left: auto;
}

/*----------index----------*/
.site-hero {
  background: #EAE9E7;
  text-align: center;
  margin-bottom: 32px;
  margin-bottom: 3.2rem;
  line-height: 1;
}

.index-nav-bnr {
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 32px;
  margin-bottom: 3.2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 459px) {
  .index-nav-bnr {
    display: block;
  }
}
.index-nav-bnr p {
  max-width: 320px;
}
@media only screen and (max-width: 767px) {
  .index-nav-bnr p {
    margin: 0 auto 16px;
    padding: 8px;
    text-align: center;
  }
}

.index-about {
  position: relative;
}
.index-about p {
  line-height: 1;
}
.index-about .link-btn {
  position: absolute;
  top: 70%;
  left: 45%;
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .index-about .link-btn {
    top: auto;
    bottom: 10%;
    left: 35%;
  }
}

.index-recruit {
  margin-top: -2px;
  position: relative;
}
@media only screen and (max-width: 459px) {
  .index-recruit {
    margin-bottom: 16px;
    margin-bottom: 1.6rem;
    padding-bottom: 90px;
    background: #EAE9E7;
  }
}
.index-recruit p {
  line-height: 1;
}
.index-recruit .link-btn-bloc {
  position: absolute;
  top: 30%;
  left: 75%;
}
@media only screen and (max-width: 767px) {
  .index-recruit .link-btn-bloc {
    top: auto;
    bottom: 5%;
    left: 7%;
    display: -webkit-flex;
    display: flex;
  }
}
@media only screen and (max-width: 459px) {
  .index-recruit .link-btn-bloc {
    display: block;
    top: 45%;
    bottom: auto;
    left: 35%;
  }
}
.index-recruit .link-btn-bloc .link-btn {
  margin-bottom: 8px;
  margin-bottom: 0.8rem;
}
@media only screen and (max-width: 767px) {
  .index-recruit .link-btn-bloc .link-btn {
    margin-right: 8px;
  }
}

/*----------pages----------*/
.breadcrumb {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
}
.breadcrumb ul {
  display: -webkit-flex;
  display: flex;
  list-style: none;
}
.breadcrumb ul li {
  margin-right: 8px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #999;
}
.breadcrumb ul li::after {
  content: "\f054";
  font-family: FontAwesome;
  margin-left: 8px;
  font-size: 12px;
  font-size: 1.2rem;
}
.breadcrumb ul li:last-child::after {
  content: "";
}
.breadcrumb ul li a {
  color: #111;
}

.page-hero {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 32px;
  margin-bottom: 3.2rem;
  line-height: 1;
}

.page-content-wrap {
  margin-bottom: 32px;
  margin-bottom: 3.2rem;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .page-content-wrap {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.page-content-wrap .main-content {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .page-content-wrap .main-content {
    width: 100%;
  }
}
.page-content-wrap .main-content section {
  margin-bottom: 40px;
  margin-bottom: 4rem;
}
.page-content-wrap .side-menu {
  margin-right: auto;
  min-width: 23%;
}
@media only screen and (max-width: 767px) {
  .page-content-wrap .side-menu {
    margin: 0 0 24px;
    width: 100%;
  }
}
.page-content-wrap .side-menu h3.side-menu-title {
  background: #01226B;
  margin: 0;
  padding: 16px 16px 8px;
  padding: 1.6rem 1.6rem 0.8rem;
  min-height: 40px;
  line-height: 1;
}
.page-content-wrap .side-menu h3.side-menu-title img {
  max-width: 117px;
}
.page-content-wrap .side-menu ul {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-content-wrap .side-menu ul li {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #ccc;
}
.page-content-wrap .side-menu ul li a {
  display: block;
  width: 100%;
  padding: 8px 16px;
  padding: 0.8rem 1.6rem;
  background: #EAE9E7;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.page-content-wrap .side-menu ul li a:hover {
  background: #ccc;
  color: #000;
  font-weight: 600;
}
.page-content-wrap .side-menu ul li a::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 1px;
  content: '.';
  color: transparent;
  background: #ccc;
  visibility: none;
  opacity: 0;
  z-index: -1;
}
.page-content-wrap .side-menu ul li a:hover::after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

h1.page-title {
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
  padding: 0;
  border-bottom: 2px solid #01226B;
  letter-spacing: 3px;
  position: relative;
}
h1.page-title .title-content {
  display: inline-block;
  background: url(../assets/common/h1_bg.png) repeat-x bottom center;
  padding: 10px 16px;
  border-top: 2px solid #01226B;
  border-right: 2px solid #01226B;
  border-left: 2px solid #01226B;
}
h1.page-title .title-content span {
  padding: 4px 8px 4px 16px;
  border-left: 10px solid #8CA3BC;
}
@media all and (-ms-high-contrast: none) {
  h1.page-title .title-content span {
    padding: 0 8px 0 16px;
    line-height: 1;
  }
}
h1.page-title .title-content span .small-txt {
  padding-left: 16px;
  border: none;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
}

h2.page-balloon {
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
  padding: 0;
  border-bottom: 1px solid #d0cdc8;
  line-height: 1;
}
h2.page-balloon span {
  display: inline-block;
  padding: 3px 16px;
  background: #01226B;
  color: #fff;
  font-family: serif;
  font-size: 14px;
  font-size: 1.4rem;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  line-height: 1;
}

h2.page-subtitle {
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
  padding: 4px 16px;
  background: #01226B;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 5px;
}

/*-----company-----*/
#history table th {
  width: 25%;
}
@media only screen and (max-width: 459px) {
  #history table th {
    width: 100%;
  }
}

.company-customer {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 459px) {
  .company-customer {
    display: block;
  }
}
.company-customer div {
  padding: 0 0 8px;
  border-left: 3px solid #EAE9E7;
}
.company-customer div::before {
  content: "";
  display: block;
  width: 85%;
  padding: 8px;
  border-top: 3px solid #EAE9E7;
}
.company-customer div p {
  padding: 2px 0 2px 8px;
}

.company-access {
  display: -webkit-flex;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .company-access {
    display: block;
  }
}
.company-access .howto-access {
  padding-right: 16px;
}
.company-access .howto-access p {
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
}
.company-access .howto-access p img {
  max-width: 180px;
}
.company-access .g-map {
  min-width: 55%;
}
.company-access .g-map iframe {
  width: 100%;
}

/*-----work-----*/
.business-img {
  margin-bottom: 40px;
  margin-bottom: 4rem;
}

#performance table th,
#performance table td {
  border: 2px solid #fff;
  padding: 8px;
}

/*-----recruit-----*/
.recruit-img {
  margin-bottom: 40px;
  margin-bottom: 4rem;
}

.recruit-catch {
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
  border-right: 1px solid #d0cdc8;
  border-left: 1px solid #d0cdc8;
}
.recruit-catch::before, .recruit-catch::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: -moz-linear-gradient(left, #d0cdc8 2%, white 2%, white 98%, white 98%, #d0cdc8 98%);
  background: -webkit-linear-gradient(left, #d0cdc8 2%, white 2%, white 98%, white 98%, #d0cdc8 98%);
  background: linear-gradient(to right, #d0cdc8 2%, #ffffff 2%, #ffffff 98%, #ffffff 98%, #d0cdc8 98%);
}
.recruit-catch p {
  display: table;
  width: 100%;
  min-height: 50px;
  padding: 1px 0;
}
.recruit-catch p span {
  display: table-cell;
  vertical-align: middle;
  padding: 3px 16px;
  background-color: #EAE9E7;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0.25, #fff), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, #fff), color-stop(0.75, #fff), color-stop(0.75, transparent), to(transparent));
  -webkit-background-size: 5px 5px;
  background-size: 5px 5px;
}

.recruit-txt {
  margin-bottom: 8px;
  margin-bottom: 0.8rem;
}
.recruit-txt p {
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
}
.recruit-txt .rt-name {
  margin-bottom: 8px;
  margin-bottom: 0.8rem;
  text-align: right;
}

.entry-description {
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
}
.entry-description a {
  color: #01226B;
  text-decoration: underline;
}

#entryform table {
  width: 100%;
}
#entryform h2.page-subtitle {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
#entryform h2.page-subtitle-recruit {
  margin-bottom: 0;
}

.recruit-reason th {
  width: 100%;
}

.input-reason {
  display: -webkit-flex;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .input-reason {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.input-reason label {
  -webkit-flex: 1;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .input-reason label {
    -webkit-flex: 0;
    flex: 0;
    -webkit-flex-basis: 30%;
    flex-basis: 30%;
    min-width: 29%;
  }
}
.input-reason label input {
  margin-right: 8px;
}

/*-----sticky-setting-----*/
#history,
#customer,
#access,
#performance,
#message,
#data,
#entryform {
  margin-top: -85px;
  padding-top: 85px;
}
@media all and (-ms-high-contrast: none) {
  #history,
  #customer,
  #access,
  #performance,
  #message,
  #data,
  #entryform {
    margin-top: -100px;
    padding-top: 100px;
  }
}
@media only screen and (max-width: 767px) {
  #history,
  #customer,
  #access,
  #performance,
  #message,
  #data,
  #entryform {
    margin-top: 0;
    padding: 16px 8px;
  }
}

/*----------footer----------*/
.site-footer {
  margin-bottom: 32px;
  margin-bottom: 3.2rem;
  padding: 16px 8px;
  padding: 1.6rem 0.8rem;
  background: #01226B;
  color: #fff;
}
.site-footer .footer-nav {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 32px;
  margin-bottom: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .site-footer .footer-nav {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 459px) {
  .site-footer .footer-nav {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .site-footer .footer-nav dl {
    -webkit-flex: 1;
    flex: 1;
    -webkit-flex-basis: 45%;
    flex-basis: 45%;
  }
}
@media only screen and (max-width: 459px) {
  .site-footer .footer-nav dl {
    padding: 16px;
    margin-bottom: 24px;
    margin-bottom: 2.4rem;
    width: 100%;
  }
}
.site-footer .footer-nav dl dt::before {
  content: "\f054";
  font-family: FontAwesome;
  margin-right: 4px;
}
.site-footer .footer-nav dl dd {
  margin-left: 16px;
}
.site-footer .footer-nav dl dd::before {
  content: "・";
  margin-right: 4px;
}
.site-footer .footer-nav dl dt,
.site-footer .footer-nav dl dd {
  transition: all .5s;
}
.site-footer .footer-nav dl dt:hover,
.site-footer .footer-nav dl dd:hover {
  color: #FF9900;
}
.site-footer .footer-nav dl a {
  color: #fff;
}
.site-footer .footer-nav dl a:hover {
  color: #FF9900;
}
.site-footer .copyright {
  text-align: right;
  font-size: 12px;
  font-size: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .site-footer .copyright {
    text-align: center;
  }
}

.footer-info {
  display: -webkit-flex;
  display: flex;
  padding: 16px 0;
  padding: 1.6rem 0;
}
@media only screen and (max-width: 767px) {
  .footer-info {
    display: block;
  }
}
.footer-info .footer-logo {
  margin-right: auto;
  max-width: 264px;
}
@media only screen and (max-width: 767px) {
  .footer-info .footer-logo {
    margin: 0 auto;
    text-align: center;
  }
}
.footer-info .footer-adress {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .footer-info .footer-adress {
    text-align: center;
  }
}

/* Keyframes */
@-webkit-keyframes fill {
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background: #333;
  }
}
/* Keyframes */
@-webkit-keyframes circle {
  0% {
    width: 1px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 1px;
    z-index: -1;
    background: #eee;
    border-radius: 100%;
  }
  100% {
    background: #aaa;
    height: 5000%;
    width: 5000%;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 0;
  }
}


/* 20260609 CLOSE */
.close_page {
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
}
.close_text {
  max-width: 700px;
  text-align: center;
}
.close_text .logo {
  max-width: 264px;
  margin: 0 auto 50px;
}
.close_text .logo img {
  width: 100%;
  height: auto;
  display: block;
}
.close_text p {
  margin: 0 0 10px;
}
.close_text .contact {
  margin-top: 40px;
}
.close_text .contact a {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 5px;
}
.close_text .contact a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .close_page {
    height: 100dvh;
    padding: 20px;
    overflow: hidden;
  }
  .close_text {
    width: 100%;
    box-sizing: border-box;
  }
  .close_text .logo {
    margin-bottom: 40px;
  }
  .close_text p {
    text-align: left;
  }
  .close_text .contact a[href^="tel:"] {
    pointer-events: auto;
  }
}
