/*######################################################################

		Base CSS

************************************************************************/

*,
*::before,
*::after {
  box-sizing: border-box;
  min-inline-size: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

body {
  color: #1a1a1a;
  font-size: 16px;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  min-height: 100vh;
  background-color: #DEF0F2;
  overflow-x: hidden;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

@media not all and (min-width: 999px){
  body {
    font-size: 15px;
  }
}

.serif {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

:where(ul, ol) {
  list-style: none;
  list-style-type: '';
  padding: unset;
  margin: 0;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.4;
}

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

:where(:any-link, button, [type='button'], [type='reset'], [type='submit'], label[for], select, summary, [role='tab'], [role='button']) {
  cursor: pointer;
}

:where(button, [type='button'], [type='reset'], [type='submit']) {
  touch-action: manipulation;
}

legend, fieldset {
  all: unset;
}

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

:target {
  scroll-margin-block: 5ex;
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after, ::backdrop {
    background-attachment: scroll !important;
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

a {
  color: #1a1a1a;
  text-decoration: none;
  transition: .3s;
}

a:hover {
  color: #1a1a1a;
  text-decoration: underline;
}



/*######################################################################

		Header

************************************************************************/
/*
	header-area
/////////////////////////////////////////////////////////*/

.header {
  position: relative;
}

.header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 540px;
  background-color: #fff;
  z-index: -1;
}

.page-header::after {
  height: 336px;
}

@media not all and (min-width: 999px){
  .page-header::after {
    height: 166px;
  }
}

.header__wrap {
  position: relative;
  max-width: 100vw;
}

.header__logo {
  position: absolute;
  top: 0;
  left: 0;
}

@media not all and (min-width: 999px){
  .header__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 0;
  }

  .header__logo {
    position: relative;
    top: 0;
    left: 0;
    height: 60px;
  }
}

.header__gnav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 75px;
}

@media not all and (min-width: 999px){
  .header__gnav {
    display: block !important;
    position: absolute;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    white-space: nowrap;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    contain: strict !important;
    opacity: 0 !important;
  }
}

.header__gnav > ul {
  display: flex;
	justify-content: center;
  align-items: center;
	flex-wrap: wrap;
  gap: 30px;
}

@media not all and (min-width: 1280px){
  .header__gnav {
    justify-content: flex-end;
    margin-right: 20px;
  }

  .header__gnav > ul {
    justify-content: flex-end;
    gap: 20px;
  }
}

.header__gnav > ul a {
  color: #006f85;
  font-weight: 700;
}

.header__gnav a:hover {
  color: #73C7CE;
  text-decoration: none;
}

.header__gnav > ul > li {
  position: relative;
}

.header__gnav .dropdown {
  position: relative;
}

.header__gnav .dropdown::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  translate: -50% 0;
  width: 12px;
  height: 8px;
  background-image: url(../images/keiei/common/nav-down-arrow.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.header__gnav .child {
  position: absolute;
  top: 30px;
  left: 50%;
  translate: -50% 0;
  padding-top: 25px;
  min-width: 340px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1000;
}

.header__gnav .child li {
  margin-bottom: 2px;
}

.header__gnav .child a {
  display: block;
  padding: 20px 10px;
  width: 100%;
  color: #006F85;
  text-align: center;
  background-color: #fff;
}

.header__gnav .child a:hover {
  color: #73C7CE;
  background-color: #DEF0F2;
}

.header__gnav li:hover > .child {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
  position: absolute;
  top: 0;
  right: 0;
}

@media not all and (min-width: 999px){
  .header-cta {
    display: block !important;
    position: absolute;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    white-space: nowrap;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    contain: strict !important;
    opacity: 0 !important;
  }
}

.header-cta a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 5px 10px;
  color: #fff;
  font-weight: 700;
  background-color: #132555;
}

@media (any-hover: hover) {
  .header-cta a:hover {
    text-decoration: none;
    background-color: #73C7CE;
  }
}

.header-cta a:focus-visible {
  text-decoration: none;
  background-color: #73C7CE;
}

.header-cta img {
  height: 40px;
}

.header-sp-button {
  display: none;
  padding-inline: 15px;
  width: 60px;
  height: 60px;
  background-color: #132555;
  border: none;
  cursor: pointer;
  z-index: 99;
}

@media not all and (min-width: 999px){
  .header-sp-button {
    display: block;
  }
}

.header-sp-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background-color: #fff;
  transition: all 0.3s ease;
}

.header-sp-button.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header-sp-button.active span:nth-child(2) {
  opacity: 0;
}
.header-sp-button.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-sp-nav {
  position: fixed;
  top: 0;
  right: -100%;
  padding-block: 30px;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #fff;
  transition: right .3s ease;
  overflow-y: auto;
  z-index: 98;
}

@media not all and (min-width: 400px){
  .header-sp-nav {
    width: 90%;
  }
}

@media not all and (min-width: 360px){
  .header-sp-nav {
    width: 100%;
  }
}

.header-sp-nav__contents {
  overflow-y: auto;
}

.header-sp-nav.open {
  right: 0;
}

.header-sp-nav__list {
  margin-bottom: 40px;
  padding-inline: 40px;
}

.header-sp-nav__list li:not(:last-child) {
  border-bottom: 1px solid #73c7ce;
}

.header-sp-nav__list li a {
  display: block;
  position: relative;
  padding: 20px;
  font-weight: 700;
  text-align: center;
}

.header-sp-nav__list .external-link a {
  position: relative;
}

.header-sp-nav__list .external-link a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 17px;
  height: 17px;
  background-image: url(./assets/images/common/external-link-icon-menu.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}


.dropdown a:hover {
  text-decoration: none;
}

.dropdown__child {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
  padding-left: 1.2em;
  border-top: 1px solid #73c7ce;
}

.dropdown.open .dropdown__child {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
}

.dropdown > a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
  border-top: 1px solid #bce0e6;
}

.dropdown-toggle-icon {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  color: #006F85;
  transition: transform 0.3s ease;
}

.dropdown.open .dropdown-toggle-icon {
  transform: rotate(45deg);
}




.header-sp-nav__cta {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.header-sp-nav__cta-item {
  width: 50%;
}

.header-sp-nav__cta-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100px;
  color: #fff;
  font-weight: 700;
}

@media not all and (min-width: 999px){
  .header-sp-nav__cta-item a {
    flex-direction: column;
    gap: 0;
    height: 80px;
  }
}

.header-sp-nav__cta-tel a {
  background-color: #349BA6;
}

.header-sp-nav__cta-contact a {
  background-color: #006F85;
}

@media (any-hover: hover) {
  .header-sp-nav__cta-tel a:hover,
  .header-sp-nav__cta-contact a:hover {
    text-decoration: none;
    opacity: .7;
  }
}

.header-sp-nav__cta-tel a:focus-visible,
.header-sp-nav__cta-contact a:focus-visible {
  text-decoration: none;
  opacity: .7;
}

.header-sp-nav__cta-item .heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-sp-nav__cta-heading {
  font-size: 18px;
}

.header-sp-nav__cta-num {
  font-size: 42px;
}

.header-sp-nav__cta-main {
  font-size: 30px;
}

@media not all and (min-width: 1100px){
  .header-sp-nav__cta-num {
    font-size: 34px;
  }

  .header-sp-nav__cta-main {
    font-size: 24px;
  }
}

@media not all and (min-width: 999px){
  .header-sp-nav__cta-tel img {
    width: 15px;
  }

  .header-sp-nav__cta-contact img {
    width: 20px;
  }

  .header-sp-nav__cta-heading {
    display: block;
    font-size: 10px;
  }

  .header-sp-nav__cta-num {
    display: block;
    font-size: 23px;
    line-height: 1.4;
  }

  .header-sp-nav__cta-main {
    display: block;
    font-size: 18px;
  }
}

@media not all and (min-width: 368px){
  .header-sp-nav__cta-num {
    font-size: 18px;
  }

  .header-sp-nav__cta-main {
    font-size: 15px;
  }
}

.header-sp-nav__logo {
  margin: 20px;
}


/*######################################################################

		Contents

************************************************************************/

.container {
  padding-top: 96px;
  overflow-x: hidden;
}

@media not all and (min-width: 999px){
  .container {
    padding-top: 67px;
  }
}

.section-button {
  margin-inline: auto;
  width: 320px;
  height: 80px;
}

.section-button__left {
  margin-inline: 0;
  width: 320px;
  height: 80px;
}

@media not all and (min-width: 368px){
  .section-button {
    width: 100%;
  }

  .section-button__left {
    width: 100%;
  }
}

.section-button a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: #006F85;
  padding-left: 30px;
  font-size: 22px;
  font-weight: 700;
  background-color: #fff;
  border: 2px solid #006F85;
  overflow: hidden;
}

.section-button a::after {
  content: '';
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  background-image: url(../images/keiei/common/arrow-button.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media (any-hover: hover) {
  .section-button a:hover {
    color: #73C7CE;
    text-decoration: none;
  }

  .section-button a:hover::after {
    background-image: url(../images/keiei/common/arrow-button_hover.svg);
  }
}

.section-button a:focus-visible::after {
  background-image: url(../images/keiei/common/arrow-button_hover.svg);
}

.external-linl a::after {
  content: '';
  display: inline-block;
  margin-left: 20px;
  width: 22px;
  height: 22px;
  background-image: url(./assets/images/common/external-link-icon-w.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}


/*
	home
/////////////////////////////////////////////////////////*/

.home-mv {
  margin-top: -70px;
}

.home-mv__main {
  position: relative;
  margin-left: auto;
  max-width: 95%;
  color: #fff;
}

.home-mv__main-contents {
  position: absolute;
  top: 50%;
  left: 100px;
  translate: 0 -50%;
}

.home-mv__main-heading {
  margin-bottom: 40px;
  font-size: 79px;
  font-weight: 800;
}

.home-mv__main-text {
  font-size: 30px;
}

@media not all and (min-width: 999px){
  .home-mv__main-contents {
    left: 30px;
  }

  .home-mv__main-heading {
    margin-bottom: 20px;
    font-size: 38px;
  }

  .home-mv__main-text {
    font-size: 15px;
  }
}

.home-mv__main-bg {
  position: relative;
  z-index: -1;
}

.home-mv__main-bg::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 1140px;
  height: 417px;
  background-image: url(../images/keiei/home/home-mv-text.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media not all and (min-width: 999px){
  .home-mv__main-bg::after {
    bottom: 10px;
    right: 10px;
    width: 95%;
    height: 417px;
  }
}

.home-mv__main-bg img {
  width: 100%;
  height: 75lvh;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
}

.home-mv__sub {
  margin-inline: auto;
  margin-bottom: 50px;
  padding-inline: 20px;
  max-width: 1576px;
}

.home-mv__sub-wrap {
  display: flex;
	justify-content: space-between;
  flex-direction: row-reverse;
	flex-wrap: wrap;
}

.home-mv__sub-image {
  margin-top: -200px;
  width: 46%;
}

.home-mv__sub-text {
  margin-top: 80px;
  width: 46%;
  font-weight: 700;
}

@media not all and (min-width: 999px){
  .home-mv__sub-image {
    margin-top: -150px;
    margin-bottom: 20px;
    width: 100%;
  }

  .home-mv__sub-text {
    margin-top: 0;
    width: 100%;
  }

  .home-mv__sub-image img {
    margin-inline: auto;
    max-width: 80%;
  }
}

.home-mv__sub-text strong {
  color: #E95504;
}

.home-mv__slider {
  margin-bottom: 180px;
}

@media not all and (min-width: 999px){
  .home-mv__slider {
    margin-bottom: 120px;
    padding-inline: 20px;
  }
}

.swiper-wrapper {
  padding-bottom: 60px;
}

.home-mv__slider a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  padding: 60px 60px 60px 0;
  background-color: #fff;
  border: 1px solid #006F85;
}

@media not all and (min-width: 999px){
  .home-mv__slider a {
    padding: 30px 0 0;
    background-color: #fff;
    border: 1px solid #006F85;
  }
}

@media (any-hover: hover) {
  .home-mv__slider a:hover {
    text-decoration: none;
    opacity: .5;
  }
}

.home-mv__slider a:focus-visible {
  text-decoration: none;
  opacity: .5;
}

.home-mv__slider-item01 a::after,
.home-mv__slider-item03 a::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-image: url(../images/keiei/common/arrow-button.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media (any-hover: hover) {
  .home-mv__slider-item01 a:hover::after,
  .home-mv__slider-item03 a:hover::after {
    background-image: url(../images/keiei/common/arrow-button_hover.svg);
  }
}

.home-mv__slider-item01 a:focus-visible::after,
.home-mv__slider-item03 a:focus-visible::after {
  background-image: url(../images/keiei/common/arrow-button_hover.svg);
}

.home-mv__slider-item02 a::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-image: url(../images/keiei/common/external-button.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media (any-hover: hover) {
  .home-mv__slider-item02 a:hover::after {
    background-image: url(../images/keiei/common/external-button_hover.svg);
  }
}

.home-mv__slider-item02 a:focus-visible::after {
  background-image: url(../images/keiei/common/external-button_hover.svg);
}

.home-mv__slider-image {
  width: 50%;
}

.home-mv__slider-contents {
  width: 45%;
}

@media not all and (min-width: 999px){
  .home-mv__slider-image {
    width: 100%;
  }

  .home-mv__slider-contents {
    padding: 30px;
    width: 100%;
  }
}

.home-mv__slider-heading {
  margin-bottom: 30px;
  color: #006F85;
  font-size: 32px;
}

.home-mv__slider-sub-heading {
  margin-bottom: 30px;
  color: #73C7CE;
  font-size: 20px;
  font-weight: 900;
}

@media not all and (min-width: 999px){
  .home-mv__slider-heading {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .home-mv__slider-sub-heading {
    margin-bottom: 20px;
    font-size: 14px;
  }
}

.home-mv__slider .swiper-pagination-bullet-active {
  background-color: #006F85;
}

.home-greeting-section {
  padding-block: 160px;
  background-color: #fff;
}

@media not all and (min-width: 999px){
  .home-greeting-section {
    padding-block: 40px 128px;
  }
}

.home-blog {
  background-color: #fff;
}

.home-blog__wrap {
  position: relative;
  margin-inline: auto;
  padding: 80px 20px 160px;
  max-width: 1576px;
}

.home-blog__icon {
  position: absolute;
  top: -100px;
  left: 0;
}

@media not all and (min-width: 999px){
  .home-blog__wrap {
    display: flex;
    flex-direction: column;
    padding: 40px 20px 160px;
  }

  .home-section-heading {
    order: 2;
  }

  .blog-archive {
    order: 3;
  }

  .section-button {
    order: 4;
  }

  .home-blog__icon {
    order: 1;
    position: relative;
    top: auto;
    left: auto;
    margin-block: -100px 30px;
    margin-inline: auto;
    width: 173px;
  }
}

.home-section-heading {
  margin-bottom: 80px;
  text-align: center;
}

.home-section-heading .jp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-inline: auto;
  margin-bottom: 10px;
  width: fit-content;
  font-size: 42px;
  font-weight: 800;
}

@media not all and (min-width: 999px){
  .home-section-heading {
    margin-bottom: 40px;
  }

  .home-section-heading .jp {
    margin-bottom: 0;
    font-size: 25px;
  }
}

.home-section-heading .en {
  color: #B3B3B3;
  font-weight: 900;
  text-transform: uppercase;
}

@media not all and (min-width: 999px){
  .home-section-heading .en {
    font-size: 13px;
  }
}

.home-guite {
  padding-block: 80px 200px;
}

@media not all and (min-width: 999px){
  .home-guite {
    padding-block: 80px 120px;
  }
}

.home-guite_contents {
  position: relative;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1576px;
}

.home-guide__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  gap: 30px 0;
}

.home-guide__item {
  width: 49%;
}

@media not all and (min-width: 999px){
  .home-guide__wrap {
    gap: 10px 0;
  }

  .home-guide__item {
    width: 100%;
  }
}

.home-guide__item a {
  display: block;
  position: relative;
  padding: 60px;
  width: 100%;
  height: 280px;
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

@media not all and (min-width: 999px){
  .home-guide__item a {
    padding: 30px 20px 20px;
    height: 200px;
  }
}

.home-guide__item:nth-child(1) a {
  background-image: url(../images/keiei/home/home-guide-bg01.jpg);
}
.home-guide__item:nth-child(2) a {
  background-image: url(../images/keiei/home/home-guide-bg02.jpg);
}
.home-guide__item:nth-child(3) a {
  background-image: url(../images/keiei/home/home-guide-bg03.jpg);
}
.home-guide__item:nth-child(4) a {
  background-image: url(../images/keiei/home/home-guide-bg04.jpg);
}

.home-guide__item a::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-image: url(../images/keiei/common/arrow-button.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

a .home-guide__heading {
  margin-bottom: 30px;
  color: #006F85;
  font-size: 22px;
  font-weight: 400;
}

.home-guide__text {
  width: 300px;
  font-size: 15px;
}

@media (any-hover: hover) {
  .home-guide__item a:hover {
    text-decoration: none;
    opacity: .5;
  }
}

.home-guide__item a:focus-visible {
  text-decoration: none;
  opacity: .5;
}

@media not all and (min-width: 999px){
  .home-guide__text {
    width: 100%;
  }
}

.home-guide__icon {
  position: absolute;
  top: -180px;
  right: 0;
}

@media not all and (min-width: 999px){
  .home-guite_contents {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
  }

  .home-section-heading {
    order: 2;
  }

  .home-guide__wrap {
    order: 3;
  }

  .home-guide__icon {
    order: 1;
    position: relative;
    top: auto;
    left: auto;
    margin-block: -200px 30px;
    margin-inline: auto;
    width: 173px;
  }
}

.home-cta-main {
  background-color: #132555;
}

.home-cta-main__wrap {
  position: relative;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1576px;
}

.home-cta-main__contents {
  position: relative;
  margin-inline: auto;
  padding-block: 80px 60px;
  width: fit-content;
}

.home-cta-main__heading {
  margin-inline: auto;
  margin-bottom: 20px;
  width: fit-content;
  color: #73C7CE;
  font-size: 42px;
  font-weight: 800;
}

@media not all and (min-width: 999px){
  .home-cta-main__heading {
    font-size: 31px;
  }
}

.home-cta-main__list li {
  position: relative;
  padding-left: 40px;
  color: #fff;
  font-size: 18px;
}

.home-cta-main__list li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 20px;
  height: 18px;
  background-image: url(../images/keiei/common/checkmark-icon.svg);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

@media not all and (min-width: 999px){
  .home-cta-main__list li {
    padding-left: 20px;
    font-size: 13px;
  }

  .home-cta-main__list li::before {
    top: 4px;
    width: 15px;
    height: 13px;
  }
}

.home-cta-main__list li:not(:last-child) {
  margin-bottom: 10px;
}

.home-cta-main__list li strong {
  color: #FACE00;
}

.home-cta__icon {
  position: absolute;
  top: -100px;
  left: 0;
}

@media not all and (min-width: 999px){
  .home-cta-main__wrap {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
  }

  .home-cta-main__contents {
    order: 2;
    padding-block: 0;
  }

  .home-cta__icon {
    order: 1;
    position: relative;
    top: auto;
    left: auto;
    margin-block: -130px 30px;
    margin-inline: auto;
    width: 173px;
  }
}


.home-cta-list {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.home-cta-list__item {
  width: 50%;
}

.home-cta-list__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100px;
  color: #fff;
  font-weight: 700;
}

@media not all and (min-width: 999px){
  .home-cta-list__item a {
    flex-direction: column;
    gap: 0;
    height: 80px;
  }
}

.home-cta-list__tel a {
  background-color: #349BA6;
}

.home-cta-list__contact a {
  background-color: #006F85;
}

@media (any-hover: hover) {
  .home-cta-list__tel a:hover,
  .home-cta-list__contact a:hover {
    text-decoration: none;
    opacity: .7;
  }
}

.home-cta-list__tel a:focus-visible,
.home-cta-list__contact a:focus-visible {
  text-decoration: none;
  opacity: .7;
}

.home-cta-list__item .heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-cta-list__heading {
  font-size: 18px;
}

.home-cta-list__num {
  font-size: 42px;
}

.home-cta-list__main {
  font-size: 30px;
}

@media not all and (min-width: 1100px){
  .home-cta-list__num {
    font-size: 34px;
  }

  .home-cta-list__main {
    font-size: 24px;
  }
}

@media not all and (min-width: 999px){
  .home-cta-list__tel img {
    width: 15px;
  }

  .home-cta-list__contact img {
    width: 20px;
  }

  .home-cta-list__heading {
    display: block;
    font-size: 10px;
  }

  .home-cta-list__num {
    display: block;
    font-size: 23px;
    line-height: 1.4;
  }

  .home-cta-list__main {
    display: block;
    font-size: 18px;
  }
}

.home-greeting-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1576px;
}

.home-greeting-contents {
  width: 38%;
}

.home-greeting-image {
  position: relative;
  width: calc(100% - 38% - 190px);
}

@media not all and (min-width: 999px){
  .home-greeting-wrap {
    flex-direction: column-reverse;
  }

  .home-greeting-contents {
    width: 100%;
  }

  .home-greeting-image {
    margin-bottom: 30px;
    width: 100%;
  }
}

.home-greeting-contents__heading {
  margin-bottom: 40px;
  font-size: 22px;
  line-height: 2;
}

@media not all and (min-width: 999px){
  .home-greeting-contents__heading {
    margin-bottom: 20px;
  }
}

.home-greeting-contents__heading strong {
  color: #E95504;
}

.home-greeting-contents__text {
  margin-bottom: 80px;
}

@media not all and (min-width: 999px){
  .home-greeting-contents__text {
    margin-bottom: 30px;
  }
}

.home-greeting-image__inner {
  margin-right: -190px;
}

@media not all and (min-width: 999px){
  .home-greeting-image__inner {
    margin-right: -200px;
  }
}

.home-greeting-contents__heading .text-g {
  color: #39b54a;
}
.home-greeting-contents__heading .text-r {
  color: #e95504;
}
.home-greeting-contents__heading .text-b {
  color: #006f85;
}

.home-greeting-image__icon {
  position: absolute;
  bottom: 0;
  right: 0;
}

.home-mail-mg {
  position: relative;
  padding-block: 80px;
  background-color: #DEF0F2;
}

.home-mail-mg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background-image: url(../images/keiei/home/home-mailmag-bg.png);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
  z-index: 0;
}

@media not all and (min-width: 999px){
  .home-mail-mg {
    padding-block: 40px 128px;
  }

  .home-mail-mg::after {
    display: none;
  }
}

.home-mail-mg__wrap {
  position: relative;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1576px;
  z-index: 1;
}

.home-mail-mg__text {
  margin-bottom: 60px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.home-mail-mg__text span {
  display: inline-block;
}

.home-mail-mg__text strong {
  color: #e95504;
}

.home-mail-mg__icon {
  position: absolute;
  bottom: 50px;
  left: 0;
}

@media not all and (min-width: 999px){
  .home-mail-mg__wrap {
    display: flex;
    flex-direction: column;
  }

  .home-mail-mg__heading {
    order: 2;
  }

  .home-mail-mg__text {
    order: 3;
    margin-bottom: 40px;
    font-size: 18px;
  }

  .home-mail-mg .section-button {
    order: 4;
  }

  .home-mail-mg__icon {
    order: 1;
    position: relative;
    bottom: auto;
    left: auto;
    margin-block: -130px 30px;
    margin-inline: auto;
    width: 173px;
  }
}

.home-faq {
  position: relative;
  padding-block: 160px;
  background-color: #fff;
}

@media not all and (min-width: 999px){
  .home-faq {
    padding-block: 128px 40px;
  }
}

.home-faq__wrap {
  position: relative;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1576px;
}

.faq-dl__item {
  margin-bottom: 10px;
}

.faq-dl__question {
  position: relative;
  padding: 30px 80px 30px 40px;
  color: #FACE00;
  font-size: 22px;
  font-weight: 700;
  background-color: #006F85;
  list-style: none;
  cursor: pointer;
}

.faq-dl__question::after {
  content: '＋';
  position: absolute;
  top: 50%;
  right: 40px;
  translate: 0 -50%;
  color: #fff;
  font-size: 22px;
  transition: transform 0.3s ease;
}

@media not all and (min-width: 999px){
  .faq-dl__question {
    padding: 20px 60px 20px 20px;
    font-size: 20px;
  }

  .faq-dl__question::after {
    content: '＋';
    position: absolute;
    top: 50%;
    right: 20px;
    translate: 0 -50%;
    color: #fff;
    font-size: 22px;
    transition: transform 0.3s ease;
  }
}

.faq-dl__item.active .faq-dl__question::after {
  content: '－';
}

.faq-dl__answer {
  padding: 0 40px;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  overflow: hidden;
}

.faq-dl__item.active .faq-dl__answer {
  padding: 40px;
  max-height: 1000px;
  opacity: 1;
}

@media not all and (min-width: 999px){
  .faq-dl__answer {
    padding: 0;
  }

  .faq-dl__item.active .faq-dl__answer {
    padding: 20px 0;
  }
}

.home-faq__icon {
  position: absolute;
  top: -200px;
  left: 0;
}

@media not all and (min-width: 999px){
  .home-faq__wrap {
    display: flex;
    flex-direction: column;
  }

  .home-faq__heading {
    order: 2;
  }

  .faq-dl {
    order: 3;
    margin-bottom: 40px;
    font-size: 18px;
  }

  .home-mail-mg .section-button {
    order: 4;
  }

  .home-faq__icon {
    order: 1;
    position: relative;
    top: auto;
    left: auto;
    margin-block: -160px 30px;
    margin-inline: auto;
    width: 173px;
  }
}



/* page */

.page-container {
  font-size: 18px;
}

@media not all and (min-width: 999px){
  .page-container {
    font-size: 16px;
  }
}

.page-mv {
  margin-block: -70px 80px;
  height: 40lvh;
}

.page-mv__main {
  position: relative;
  margin-left: auto;
  color: #fff;
}

.page-mv__main-contents {
  display: flex;
	flex-wrap: wrap;
  position: relative;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1576px;
  height: 40lvh;
}

@media not all and (min-width: 1600px){
  .page-mv__main-contents {
    padding-inline: 40px 20px;
  }
}

@media not all and (min-width: 999px){
  .page-mv__main-contents {
    height: 273px;
  }
}

.page-mv__main-heading {
  display: grid;
  place-content: center;
  font-size: 68px;
  font-weight: 800;
  line-height: 1.2;
}

.page-mv__main-heading .small {
  font-size: 26px;
}

.page-mv__main-icon {
  position: absolute;
  bottom: -30px;
  right: 20px;
}

@media not all and (min-width: 999px){
  .page-mv__main-heading {
    font-size: 38px;
  }

  .page-mv__main-heading .small {
    font-size: 20px;
  }

  .page-mv__main-icon {
    bottom: -100px;
    right: auto;
    left: 50%;
    translate: -50% 0;
    width: 150px;
    height: 140px;
    object-fit: contain;
  }
}

@media not all and (min-width: 568px){
  .page-mv__main-heading {
    font-size: 30px;
  }

  .page-mv__main-heading .small {
    font-size: 18px;
  }
}

@media not all and (min-width: 368px){
  .page-mv__main-heading {
    font-size: 24px;
  }

  .page-mv__main-heading .small {
    font-size: 14px;
  }
}

.page-mv__main-bg {
  position: absolute;
  top: 0;
  left: 5vw;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  z-index: -1;
}

.page-mv__main-bg img {
  width: 95vw;
  height: 40lvh;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
}

@media not all and (min-width: 1710px){
  .page-mv__main-bg {
    left: 2vw;
  }

  .page-mv__main-bg img {
    width: 98vw;
  }
}

@media not all and (min-width: 1600px){
  .page-mv__main-bg {
    left: 20px;
  }

  .page-mv__main-bg img {
    width: calc(100vw - 20px);
  }
}

@media not all and (min-width: 999px){
  .page-mv__main-bg img {
    height: 263px;
  }
}

.page-hero {
  margin-inline: auto;
  margin-bottom: 80px;
  padding-inline: 20px;
  max-width: 1576px;
}

@media not all and (min-width: 999px){
  .page-hero {
    margin-bottom: 40px;
  }
}

.page-hero__heading {
  margin-bottom: 30px;
  font-size: 23px;
}

.page-hero__heading strong {
  color: #E95504;
}

.page-hero p {
  margin-bottom: 30px;
}


.page-hero p {
  margin-bottom: 30px;
}

.page-hero h4 {
  margin-bottom: 20px;
  font-size: 20px;
}

.page-hero h4:not(:first-of-type) {
  margin-top: 50px;
}

.page-hero ul {
  margin-bottom: 30px;
}

.page-hero ul li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 1.5em;
}

.page-hero ul li::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #006F85;
  border-radius: 50vh;
}

.page-main {
  margin-inline: auto;
  margin-bottom: 80px;
  padding-inline: 20px;
  max-width: 1576px;
}

.page-main__section {
  padding: 60px;
  background-color: #fff;
}

@media not all and (min-width: 999px){
  .page-main__section {
    padding: 20px;
  }
}

.page-main__section:not(:last-child) {
  margin-bottom: 40px;
}

.page-main__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.page-main__header {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 32%;
}

.page-main__contents {
  width: 65%;
}

@media not all and (min-width: 999px){
  .page-main__header {
    margin-bottom: 30px;
    width: 100%;
  }

  .page-main__contents {
    width: 100%;
  }
}

.page-main__heading {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.page-main__heading-num {
  display: grid;
  place-content: center;
  padding: 10px;
  width: 128px;
  height: 128px;
  color: #fff;
  font-size: 74px;
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
  background-color: #349BA6;
  border-radius: 0 20px 0 0;
}

.page-main__heading-num .min {
  display: block;
  font-size: 30px;
}

.page-main__heading-text {
  display: inline-block;
  margin-top: 20px;
  width: calc(100% - 150px);
  color: #006F85;
  font-size: 32px;
}

@media not all and (min-width: 999px){
  .page-main__heading {
    margin-bottom: 30px;
  }

  .page-main__heading-num {
    width: 76px;
    height: 76px;
    color: #fff;
    font-size: 44px;
    text-align: center;
    line-height: 1;
    text-transform: uppercase;
    background-color: #349BA6;
    border-radius: 0 20px 0 0;
  }

  .page-main__heading-num .min {
    display: block;
    font-size: 17px;
  }

  .page-main__heading-text {
    margin-top: 5px;
    width: calc(100% - 90px);
    color: #006F85;
    font-size: 26px;
  }
}

@media not all and (min-width: 468px){
  .page-main__heading {
    margin-bottom: 20px;
  }

  .page-main__heading-num {
    width: 56px;
    height: 56px;
    font-size: 30px;
  }

  .page-main__heading-num .min {
    display: block;
    font-size: 10px;
  }

  .page-main__heading-text {
    width: calc(100% - 80px);
    font-size: 21px;
  }
}

.page-main__header-icon {
  margin-inline: auto;
  max-width: 230px;
}

.page-main__contents h3 {
  margin-bottom: 30px;
  padding: 20px 30px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  background-color: #349BA6;
  border-radius: 0 20px 0 0;
}

.page-main__contents h3:not(:first-of-type) {
  margin-top: 60px;
}

@media not all and (min-width: 999px){
  .page-main__contents h3 {
    margin-bottom: 20px;
    padding: 10px 20px;
  }

  .page-main__contents h3:not(:first-of-type) {
    margin-top: 40px;
  }
}

@media not all and (min-width: 468px){
  .page-main__contents h3 {
    margin-bottom: 20px;
    padding: 10px 20px;
    font-size: 18px;
  }

  .page-main__contents h3:not(:first-of-type) {
    margin-top: 40px;
  }
}

.page-main__contents h3.fin {
  background-color: #006F85;
}

.page-main__contents-wrap {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
}

.page-main__contents-wrap.re {
  flex-direction: row-reverse;
}

.page-main__contents-image {
  width: 30%;
}

.page-main__contents-text {
  width: 65%;
}

.page-main__contents-image img {
  width: 100%;
}

@media not all and (min-width: 999px){
  .page-main__contents-image {
    margin-bottom: 20px;
    width: 100%;
  }

  .page-main__contents-text {
    width: 100%;
  }
}

.page-main__contents p {
  margin-bottom: 30px;
}

.page-main__contents p {
  margin-bottom: 30px;
}

.page-main__contents h4 {
  margin-bottom: 20px;
  font-size: 20px;
}

.page-main__contents h4:not(:first-of-type) {
  margin-top: 50px;
}

.page-main__contents ul {
  margin-bottom: 30px;
}

.page-main__contents ul li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 1.5em;
}

.page-main__contents ul li::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #006F85;
  border-radius: 50vh;
}

.page-main__contents ol {
  counter-reset: contents-ol;
  margin-bottom: 30px;
}

.page-main__contents ol li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 1.5em;
}

.page-main__contents ol li::before {
  counter-increment: contents-ol;
  content: counter(contents-ol) ;
  position: absolute;
  top: 0;
  left: 0;
  color: #006F85;
  font-weight: 700;
}

.page-main__contents table {
  margin-bottom: 30px;
  width: 100%;
}

.page-main__contents tbody th,
.page-main__contents tbody td {
  padding: 10px;
  text-align: center;
  background-color: #f2f2f2;
}

.page-contents-footer__contents ol {
  counter-reset: contents-ol;
  margin-bottom: 30px;
}

.page-contents-footer__contents ol li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 1.5em;
}

.page-contents-footer__contents ol li::before {
  counter-increment: contents-ol;
  content: counter(contents-ol) ;
  position: absolute;
  top: 0;
  left: 0;
  color: #006F85;
  font-weight: 700;
}

.page-stn {
  margin-inline: auto;
  margin-bottom: 80px;
  padding-inline: 20px;
  max-width: 1576px;
}

.page-stn__section {
  position: relative;
  padding: 60px;
  background-color: #fff;
}

@media not all and (min-width: 999px){
  .page-stn__section {
    padding: 20px;
  }
}

.page-stn__section:not(:last-child) {
  margin-bottom: 40px;
}

.page-stn__header {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
}

.page-stn__heading {
  margin-bottom: 80px;
  padding: 30px;
  width: calc(100% - 200px);
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  background-color: #006F85;
  border-radius: 0 20px 0 0;
}

.page-stn__header-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 200px;
  max-height: 100px;
}

.page-stn__header-icon img {
  max-height: 200px;
}

@media not all and (min-width: 999px){
  .page-stn__heading {
    margin-bottom: 40px;
    padding: 10px 20px;
    width: calc(100% - 160px);
    font-size: 24px;
  }

  .page-stn__header-icon {
    position: relative;
    top: auto;
    right: auto;
    width: 120px;
  }

  .page-stn__header-icon img {
    max-height: 100px;
  }
}

@media not all and (min-width: 568px){
  .page-stn__heading {
    margin-bottom: 20px;
    width: 100%;
  }

  .page-stn__header-icon {
    margin-inline: auto;
    margin-bottom: 30px;
    width: fit-content;
  }
}

.page-stn__contents h3 {
  margin-bottom: 30px;
  padding-left: 20px;
  font-size: 26px;
  border-left: 6px solid #006F85;
}

.page-stn__contents h3:not(:first-of-type) {
  margin-top: 60px;
}

.page-stn__contents-wrap {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
}

.page-stn__contents-image {
  width: 40%;
}

.page-stn__contents-text {
  width: 55%;
}

@media not all and (min-width: 999px){
  .page-stn__contents-image {
    margin-bottom: 30px;
    width: 100%;
  }

  .page-stn__contents-text {
    width: 100%;
  }
}

.page-stn__contents-image img {
  margin-left: auto;
  max-height: 500px;
}

@media not all and (min-width: 999px){
  .page-stn__contents-image img {
    margin-inline: auto;
    max-height: 300px;
  }
}

.page-stn__contents-text p {
  margin-bottom: 30px;
}

.page-stn__contents-text h4 {
  margin-bottom: 20px;
  font-size: 20px;
}

.page-stn__contents-text h4:not(:first-of-type) {
  margin-top: 50px;
}

.page-stn__contents-text ul {
  margin-bottom: 30px;
}

.page-stn__contents-text ul li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 1.5em;
}

.page-stn__contents-text ul li::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #006F85;
  border-radius: 50vh;
}

.page-stn__contents-text ol {
  counter-reset: contents-ol;
  margin-bottom: 30px;
}

.page-stn__contents-text ol li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 1.5em;
}

.page-stn__contents-text ol li::before {
  counter-increment: contents-ol;
  content: counter(contents-ol) ;
  position: absolute;
  top: 0;
  left: 0;
  color: #006F85;
  font-weight: 700;
}

.page-stn__contents-text table {
  margin-bottom: 30px;
  width: 100%;
}

.page-stn__contents-text tbody th,
.page-stn__contents-text tbody td {
  padding: 10px;
  text-align: center;
  background-color: #f2f2f2;
}

.mailmag-voice {
  margin-bottom: 30px;
  padding: 30px;
  background-color: #f2f2f2;
  border-radius: 0 20px 0 0;
}

.mailmag-voice dd {
  margin-bottom: 20px;
}

.mailmag-voice dt {
  font-weight: 700;
  text-align: right;
}

@media not all and (min-width: 999px){
  .mailmag-voice {
    margin-bottom: 20px;
    padding: 20px;
  }

  .mailmag-voice dd {
    margin-bottom: 10px;
  }
}

.page-contents-footer__contents p {
  margin-bottom: 30px;
}

.page-contents-footer__contents ol {
  counter-reset: contents-ol;
  margin-bottom: 30px;
}

.page-contents-footer__contents ol li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 1.5em;
}

.page-contents-footer__contents ol li::before {
  counter-increment: contents-ol;
  content: counter(contents-ol) ;
  position: absolute;
  top: 0;
  left: 0;
  color: #006F85;
  font-weight: 700;
}

.page-contents-footer {
  margin-inline: auto;
  margin-bottom: 80px;
  padding-inline: 20px;
  max-width: 1576px;
}

.page-contents-footer__wrap {
  display: flex;
	justify-content: space-between;
  flex-direction: row-reverse;
	flex-wrap: wrap;
}

.page-contents-footer__image {
  width: 346px;
}

.page-contents-footer__contents {
  width: calc(100% - 570px);
}

@media not all and (min-width: 999px){
  .page-contents-footer__image {
    margin-bottom: 40px;
    width: 100%;
  }

  .page-contents-footer__image img {
    margin-inline: auto;
  }

  .page-contents-footer__contents {
    width: 100%;
  }
}

.page-contents-footer__heading {
  margin-bottom: 60px;
  font-size: 22px;
}

@media not all and (min-width: 999px){
  .page-contents-footer__heading {
    margin-bottom: 30px;
    font-size: 18px;
  }
}

.page-recruit-cta {
  position: relative;
  height: 250px;
  background-color: #132555;
}

@media not all and (min-width: 999px){
  .page-recruit-cta {
    padding-top: 157px;
    height: fit-content;
  }
}

.page-recruit-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 597px;
  height: 250px;
  background-image: url(../images/keiei/common/footer-cta-bg.png);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
  z-index: 1;
}

@media not all and (min-width: 999px){
  .page-recruit-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    width: 375px;
    height: 157px;
    background-image: url(../images/keiei/common/footer-cta-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
  }
}

.page-recruit-cta__heading {
  font-size: 36px;
}

.page-recruit-cta__heading strong {
  color: #73C7CE;
}

.page-recruit-cta__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1576px;
  height: 250px;
  color: #fff;
  z-index: 2;
}

@media not all and (min-width: 999px){
  .page-recruit-cta__wrap {
    flex-direction: column;
    padding-block: 30px;
    height: fit-content;
  }

  .page-recruit-cta__heading {
    margin-bottom: 30px;
    width: 100%;
    font-size: 27px;
    text-align: center;
  }

  .page-recruit-cta__button {
    width: 100%;
  }
}

.page-recruit-cta__heading .line,
.page-recruit-cta__heading strong {
  display: inline-block;
}

.page-recruit-cta__button a {
  display: flex;
  align-items: center;
  position: relative;
  margin-inline: auto;
  padding-left: 30px;
  width: 458px;
  height: 64px;
  color: #006F85;
  font-size: 24px;
  background-color: #fff;
}

.page-recruit-cta__button a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  width: 21px;
  height: 21px;
  background-image: url(../images/keiei/common/arrow-g.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media not all and (min-width: 999px){
  .page-recruit-cta__button a {
    padding-left: 20px;
    font-size: 21px;
  }
}

@media (any-hover: hover) {
  .page-recruit-cta__button a:hover {
    text-decoration: none;
    opacity: .5;
  }
}

@media not all and (min-width: 999px){
  .page-recruit-cta__button a {
    padding: 10px 60px 10px 10px;
    width: 100%;
    height: fit-content;
  }
}

.page-recruit-cta__button a:focus-visible {
  text-decoration: none;
  opacity: .5;
}


/* blog */

.blog-container {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  margin-inline: auto;
  margin-bottom: 80px;
  padding-inline: 20px;
  max-width: 1576px;
}

@media not all and (min-width: 999px){
  .blog-container {
    margin-bottom: 60px;
  }
}

.blog-container__min {
  width: 70%;
}

.blog-container__sidebar {
  width: 25%;
  font-size: 16px;
}

@media not all and (min-width: 868px){
  .blog-container__min {
    margin-bottom: 40px;
    width: 100%;
  }

  .blog-container__sidebar {
    width: 100%;
    font-size: 15px;
  }
}

.blog-container__sidebar-item:not(:last-child) {
  margin-bottom: 60px;
}

.blog-container__sidebar-item h3 {
  margin-bottom: 20px;
}

.blog-container__sidebar-item ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  line-height: 1.4;
}

.blog-container__sidebar-item ul li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #006F85;
  border-radius: 50vh;
}

@media (any-hover: hover) {
  .blog-container__sidebar-item ul li a:hover {
    text-decoration: none;
    opacity: .5;
  }
}

.blog-container__sidebar-item ul li a:focus-visible {
  text-decoration: none;
  opacity: .5;
}

.blog-cat-title {
  margin-bottom: 40px;
  font-size: 32px;
}

.blog-archive {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  gap: 20px 0;
  margin-bottom: 60px;
}

.blog-archive__item {
  width: 24%;
}

.blog-archive__item-min {
  width: 48%;
}

@media not all and (min-width: 999px){
  .blog-archive {
    margin-bottom: 0;
  }

  .blog-archive__item,
  .blog-archive__item-min {
    width: 100%;
  }
}

.blog-archive__item a,
.blog-archive__item-min a {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #00244e;
}

@media (any-hover: hover) {
  .blog-archive__item a:hover,
  .blog-archive__item-min a:hover {
    text-decoration: none;
    opacity: .5;
  }
}

.blog-archive__item a:focus-visible,
.blog-archive__item-min a:focus-visible {
  text-decoration: none;
  opacity: 5;
}

.blog-archive__title {
  order: 2;
  margin: 30px;
  font-size: 18px;
}

.blog-archive__text {
  order: 3;
  margin-inline: 30px;
  margin-bottom: 60px;
  font-size: 13px;
}

.blog-archive__meta {
  order: 4;
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
  margin-inline: 30px;
  margin-bottom: 30px;
  color: #999;
  font-size: 13px;
  font-weight: 700;
}

.blog-archive__meta li {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-archive__thumbnail {
  order: 1;
}

.blog-archive__thumbnail img {
  width: 100%;
}

.blog-pagenation ol {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
}

.blog-pagenation ol li {
  width: 50px;
  height: 60px;
  font-size: 16px;
  font-weight: 700;
}

.blog-pagenation ol li.active {
  display: grid;
  place-content: center;
  color: #fff;
  width: 50px;
  height: 60px;
  background-color: #333;
  border-radius: 10px;
}

.blog-pagenation ol li a {
  display: grid;
  place-content: center;
  color: #111;
  width: 50px;
  height: 60px;
  background-color: #fff;
  border-radius: 10px;
}

@media (any-hover: hover) {
  .blog-pagenation ol li a:hover {
    text-decoration: none;
    color: #fff;
    background-color: #333;
  }
}

.blog-pagenation ol li a:focus-visible {
  text-decoration: none;
  color: #fff;
  background-color: #333;
}

.blog-single {
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
}

@media not all and (min-width: 999px){
  .blog-single {
    padding: 20px;
  }
}

.blog-single__header {
  margin-bottom: 80px;
}

.blog-single__title {
  margin-bottom: 30px;
  font-size: 32px;
}

.blog-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  color: #999;
  font-size: 16px;
  font-weight: 700;
}

.blog-single__meta li {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-single__meta li a {
  color: #999;
}

@media not all and (min-width: 999px){
  .blog-single__header {
    margin-bottom: 40px;
  }

  .blog-single__title {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .blog-single__meta {
    gap: 20px;
    font-size: 14px;
  }
}

.blog-single__contents {
  margin-bottom: 120px;
}

@media not all and (min-width: 999px){
  .blog-single__contents {
    margin-bottom: 60px;
  }
}

.blog-single__contents p {
  margin-bottom: 30px;
}

.blog-single__contents h2 {
  margin-block: 80px 30px;
  padding: 20px;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  background-color: #006F85;
  border-radius: 0 20px 0 0;
}

.blog-single__contents h3 {
  margin-block: 60px 30px;
  padding-left: 20px;
  font-size: 24px;
  border-left: 6px solid #006F85;
}

@media not all and (min-width: 999px){
  .blog-single__contents h2 {
    margin-block: 60px 30px;
    padding: 15px;
    font-size: 24px;
  }

  .blog-single__contents h3 {
    margin-block: 50px 20px;
    font-size: 20px;
  }
}

.blog-single__contents img {
  margin-block: 30px;
}

.blog-single__contents ul,
.blog-single__contents ol {
  margin-block: 30px;
}

.blog-single__contents ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  line-height: 1.4;
}

.blog-single__contents ul li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #006F85;
  border-radius: 50vh;
}

.blog-single__contents ol {
  counter-reset: contents-ol;
  margin-bottom: 30px;
}

.blog-single__contents ol li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 1.5em;
}

.blog-single__contents ol li::before {
  counter-increment: contents-ol;
  content: counter(contents-ol) ;
  position: absolute;
  top: 0;
  left: 0;
  color: #006F85;
  font-weight: 700;
}

.blog-single__contents .wp-block-table table {
  border: none!important;
}

.blog-single__contents .wp-block-table thead {
  font-weight: 700;
  text-align: center;
  border-bottom: none!important;
}

.blog-single__contents .wp-block-table td,
.blog-single__contents .wp-block-table th {
  padding: 10px!important;
  border: none!important;
}

.blog-single__contents .wp-block-table tbody td {
  border-right: 2px solid #fff!important;
  border-bottom: 2px solid #fff!important;
  background-color: #f2f2f2!important;
}

.blog-single__contents .has-fixed-layout thead th:first-of-type,
.blog-single__contents .has-fixed-layout thead td:first-of-type,
.blog-single__contents .has-fixed-layout tbody td:first-of-type {
  width: 200px;
  text-align: center;
}

@media not all and (min-width: 999px){
  .blog-single__contents .has-fixed-layout thead th:first-of-type,
  .blog-single__contents .has-fixed-layout thead td:first-of-type,
  .blog-single__contents .has-fixed-layout tbody td:first-of-type {
    width: 150px;
  }
}

.related-posts__heading {
  margin-bottom: 30px;
  font-size: 24px;
}

.post-navigation {
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  width: 48%;
  position: relative;
}

.post-navigation .nav-links a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: background-color 0.2s;
  min-height: 60px;
}

.post-navigation .nav-links a:hover {
  background-color: #f5f5f5;
}

.post-navigation .nav-label {
  display: block;
  font-size: 0.8em;
  color: #777;
  margin-bottom: 5px;
}

.post-navigation .nav-title {
  font-weight: bold;
}

.post-navigation .nav-next {
  text-align: right;
}



/*######################################################################

		Footer

************************************************************************/

.home-recruit-cta {
  padding: 80px 20px;
  background-image: url(../images/keiei/home//home-recruit-bg.jpg);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.home-recruit-cta__heading {
  margin-bottom: 80px;
  color: #fff;
  font-size: 36px;
  text-align: center;
}

.home-recruit-cta__heading strong {
  color: #73C7CE;
}

@media not all and (min-width: 999px){
  .home-recruit-cta {
    padding: 60px 20px;
  }

  .home-recruit-cta__heading {
    margin-bottom: 40px;
    font-size: 27px;
  }
}

.home-recruit-cta__list {
  display: flex;
	justify-content: center;
  align-items: center;
	flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 40px;
}

@media not all and (min-width: 999px){
  .home-recruit-cta__list {
    gap: 30px;
    margin-bottom: 30px;
  }
}

@media not all and (min-width: 468px){
  .home-recruit-cta__list {
    gap: 10px;
  }
}

.home-recruit-cta__list li {
  display: grid;
  place-content: center;
  width: 170px;
  height: 170px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  border: 1px solid #73C7CE;
  border-radius: 50vh;
}

@media not all and (min-width: 468px){
  .home-recruit-cta__list li {
    width: 120px;
    height: 120px;
  }
}

.home-recruit-cta-main__button a {
  display: grid;
  place-content: center;
  position: relative;
  margin-inline: auto;
  width: 720px;
  height: 64px;
  color: #006F85;
  background-color: #fff;
}

.home-recruit-cta-main__button a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  width: 21px;
  height: 21px;
  background-image: url(../images/keiei/common/arrow-g.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media (any-hover: hover) {
  .home-recruit-cta-main__button a:hover {
    text-decoration: none;
    opacity: .5;
  }
}

@media not all and (min-width: 999px){
  .home-recruit-cta-main__button a {
    padding: 10px 60px 10px 10px;
    width: 100%;
    height: fit-content;
  }
}

.home-recruit-cta-main__button a:focus-visible {
  text-decoration: none;
  opacity: .5;
}






.footer-cta-main {
  display: flex;
  flex-direction: column;
  padding-block: 160px;
  background-image: url(./assets/images/common/cta-bg.jpg);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

@media not all and (min-width: 999px){
  .footer-cta-main {
    padding-block: 60px;
    background-image: url(./assets/images/common/cta-bg-sp.jpg);
  }
}

.footer-cta-main__heading {
  margin-inline: auto;
  margin-bottom: 60px;
}

.footer-cta-main__heading-text {
  display: block !important;
  position: absolute;
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  contain: strict !important;
  opacity: 0 !important;
}

.footer-cta-main__button a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-inline: auto;
  width: 610px;
  height: 77px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  background-color: #f7931e;
  border: 1px solid #fff;
  border-radius: 50vh;
  box-shadow: 0 7px 3px rgb(0 0 0 / .3);
}

.footer-cta-main__button a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 30px;
  translate: 0 -50%;
  width: 54px;
  height: 48px;
  background-image: url(./assets/images/common/cta-button-icon.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media (any-hover: hover) {
  .footer-cta-main__button a:hover {
    text-decoration: none;
    background-color: #00244e;
  }
}

@media not all and (min-width: 668px){
  .footer-cta-main__button a {
    justify-content: flex-start;
    padding-inline: 20px 70px;
    width: 100%;
    height: 55px;
    font-size: 16px;
    text-align: left;
    line-height: 1.2;
  }

  .footer-cta-main__button a::after {
    right: 20px;
    width: 39px;
    height: 34px;
  }
}

.footer-cta-main__button a:focus-visible {
  text-decoration: none;
  background-color: #00244e;
}


.footer-nav {
  background-color: #fff;
}

.footer-nav__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  margin-inline: auto;
  padding: 128px 20px;
  max-width: 1576px;
}

@media not all and (min-width: 999px){
  .footer-nav__wrap {
    padding: 40px 20px;
  }
}

.footer-nav__info {
  width: 475px;
}

.footer-nav__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 0;
  padding-left: 30px;
  width: calc(100% - 475px);
  border-left: 3px solid #EF8337;
}

@media not all and (min-width: 1200px){
  .footer-nav__info {
    padding-right: 30px;
    width: 400px;
  }

  .footer-nav__list {
    width: calc(100% - 400px);
    border-left: none;
  }
}

@media not all and (min-width: 1000px){
  .footer-nav__info {
    margin-bottom: 40px;
    padding-right: 0;
    width: 100%;
  }

  .footer-nav__list {
    padding-left: 0;
    width: 100%;
  }
}

.footer-nav__logo {
  margin-bottom: 80px;
}

@media not all and (min-width: 999px){
  .footer-nav__logo {
    margin-bottom: 30px;
  }
}

.footer-nav__info-tel {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #73C7CE;
  font-size: 42px;
}

@media not all and (min-width: 999px){
  .footer-nav__info-tel {
    font-size: 32px;
  }
}

.footer-nav__list li {
  width: 49%;
}

@media not all and (min-width: 999px){
  .footer-nav__list li {
    width: 100%;
  }
}

.footer-nav__list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (any-hover: hover) {
  .footer-nav__list a:hover {
    text-decoration: none;
  }
}

.footer-nav__list a:focus-visible {
  text-decoration: none;
}

.footer-nav__list a::after {
  content: '';
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  background-image: url(../images/keiei/common/arrow-button.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (any-hover: hover) {
  .footer-nav__list a:hover::after {
    background-image: url(../images/keiei/common/arrow-button_hover.svg);
  }
}

.footer-nav__list a:focus-visible::after {
  background-image: url(../images/keiei/common/arrow-button_hover.svg);
}

.footer-nav__list p {
  width: calc(100% - 80px);
}

.footer-nav__list .name {
  display: block;
  font-size: 20px;
  font-weight: 700;
}

.footer-nav__list .name > * {
  display: inline-block;
}

.footer-nav__list .station {
  font-size: 15px;
}

@media (any-hover: hover) {
  .footer-nav__list a:hover .name {
    color: #73C7CE;
  }
}

.footer-nav__list a:focus-visible .name {
  color: #73C7CE;
}

.copyright {
  padding: 30px 20px;
  color: #73C7CE;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  background-color: #006F85;
}

@media not all and (min-width: 999px){
  .copyright {
    margin-bottom: 70px;
  }
}

.fixed-menu {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100vw;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: top 0.4s ease;
}

.fixed-menu--visible {
  top: 0;
}

.fixed-menu__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.fixed-menu__logo {
  height: 80px;
}

.fixed-menu__logo img {
  height: 80px;
}

@media not all and (min-width: 999px){
  .fixed-menu__logo {
    height: 60px;
  }

  .fixed-menu__logo img {
    height: 60px;
  }
}

.fixed-menu__gnav {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media not all and (min-width: 999px){
  .fixed-menu__gnav {
    display: block !important;
    position: absolute;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    white-space: nowrap;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    contain: strict !important;
    opacity: 0 !important;
  }
}

.fixed-menu__gnav > ul {
  display: flex;
	justify-content: center;
  align-items: center;
	flex-wrap: wrap;
  gap: 30px;
}

@media not all and (min-width: 1280px){
  .fixed-menu__gnav {
    justify-content: flex-end;
    margin-right: 20px;
  }

  .fixed-menu__gnav > ul {
    justify-content: flex-end;
    gap: 10px;
    font-size: 14px;
  }
}

.fixed-menu__gnav > ul a {
  color: #006f85;
  font-weight: 700;
}

.fixed-menu__gnav a:hover {
  color: #73C7CE;
  text-decoration: none;
}

.fixed-menu__gnav > ul > li {
  position: relative;
}

.fixed-menu__gnav .dropdown {
  position: relative;
}

.fixed-menu__gnav .dropdown::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  translate: -50% 0;
  width: 12px;
  height: 8px;
  background-image: url(../images/keiei/common/nav-down-arrow.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.fixed-menu__gnav .child {
  position: absolute;
  top: 30px;
  left: 50%;
  translate: -50% 0;
  padding-top: 25px;
  min-width: 340px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1000;
}

.fixed-menu__gnav .child li {
  margin-bottom: 2px;
}

.fixed-menu__gnav .child a {
  display: block;
  padding: 20px 10px;
  width: 100%;
  color: #006F85;
  text-align: center;
  background-color: #fff;
}

.fixed-menu__gnav .child a:hover {
  color: #73C7CE;
  background-color: #DEF0F2;
}

.fixed-menu__gnav li:hover > .child {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fixed-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

@media not all and (min-width: 999px){
  .fixed-menu-cta {
    display: block !important;
    position: absolute;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    white-space: nowrap;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    contain: strict !important;
    opacity: 0 !important;
  }
}

.fixed-menu-cta a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 5px 10px;
  color: #fff;
  font-weight: 700;
  background-color: #132555;
}

@media (any-hover: hover) {
  .fixed-menu-cta a:hover {
    text-decoration: none;
    background-color: #73C7CE;
  }
}

.fixed-menu-cta a:focus-visible {
  text-decoration: none;
  background-color: #73C7CE;
}

.fixed-menu-cta img {
  height: 23px;
}

.fixed-menu-cta .small {
  font-size: 10px;
}

.fixed-menu-cta .text {
  line-height: 1.1;
}

.fixed-menu-sp-button {
  display: none;
  padding-inline: 15px;
  width: 60px;
  height: 60px;
  background-color: #132555;
  border: none;
  cursor: pointer;
  z-index: 99;
}

@media not all and (min-width: 999px){
  .fixed-menu-sp-button {
    display: block;
  }
}

.fixed-menu-sp-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background-color: #fff;
  transition: all 0.3s ease;
}

.fixed-menu-sp-button.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.fixed-menu-sp-button.active span:nth-child(2) {
  opacity: 0;
}
.fixed-menu-sp-button.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.fixed-menu-nav {
  position: fixed;
  top: 40px;
  right: -100%;
  padding-block: 30px;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #fff;
  transition: right .3s ease;
  overflow-y: auto;
  z-index: 98;
}

@media not all and (min-width: 400px){
  .fixed-menu-nav {
    width: 90%;
  }
}

@media not all and (min-width: 360px){
  .fixed-menu-nav {
    width: 100%;
  }
}

.fixed-menu-nav__contents {
  overflow-y: auto;
}

.fixed-menu-nav.open {
  right: 0;
}

.fixed-menu-nav__list {
  margin-bottom: 40px;
  padding-inline: 40px;
}

.fixed-menu-nav__list li:not(:last-child) {
  border-bottom: 1px solid #73c7ce;
}

.fixed-menu-nav__list li a {
  display: block;
  position: relative;
  padding: 20px;
  font-weight: 700;
  text-align: center;
}

.fixed-menu-nav__list .external-link a {
  position: relative;
}

.fixed-menu-nav__list .external-link a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 17px;
  height: 17px;
  background-image: url(./assets/images/common/external-link-icon-menu.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.fixed-menu-nav__cta {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.fixed-menu-nav__cta-item {
  width: 50%;
}

.fixed-menu-nav__cta-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100px;
  color: #fff;
  font-weight: 700;
}

@media not all and (min-width: 999px){
  .fixed-menu-nav__cta-item a {
    flex-direction: column;
    gap: 0;
    height: 80px;
  }
}

.fixed-menu-nav__cta-tel a {
  background-color: #349BA6;
}

.fixed-menu-nav__cta-contact a {
  background-color: #006F85;
}

@media (any-hover: hover) {
  .fixed-menu-nav__cta-tel a:hover,
  .fixed-menu-nav__cta-contact a:hover {
    text-decoration: none;
    opacity: .7;
  }
}

.fixed-menu-nav__cta-tel a:focus-visible,
.fixed-menu-nav__cta-contact a:focus-visible {
  text-decoration: none;
  opacity: .7;
}

.fixed-menu-nav__cta-item .heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fixed-menu-nav__cta-heading {
  font-size: 18px;
}

.fixed-menu-nav__cta-num {
  font-size: 42px;
}

.fixed-menu-nav__cta-main {
  font-size: 30px;
}

@media not all and (min-width: 1100px){
  .fixed-menu-nav__cta-num {
    font-size: 34px;
  }

  .fixed-menu-nav__cta-main {
    font-size: 24px;
  }
}

@media not all and (min-width: 999px){
  .fixed-menu-nav__cta-tel img {
    width: 15px;
  }

  .fixed-menu-nav__cta-contact img {
    width: 20px;
  }

  .fixed-menu-nav__cta-heading {
    display: block;
    font-size: 10px;
  }

  .fixed-menu-nav__cta-num {
    display: block;
    font-size: 23px;
    line-height: 1.4;
  }

  .fixed-menu-nav__cta-main {
    display: block;
    font-size: 18px;
  }
}

@media not all and (min-width: 368px){
  .fixed-menu-nav__cta-num {
    font-size: 18px;
  }

  .fixed-menu-nav__cta-main {
    font-size: 15px;
  }
}

.fixed-menu-nav__logo {
  margin: 20px;
}
