/*
Theme Name: Ayumi Dental Template vol.1
Theme URI: https://aym-d.com/
Version: 1.01
*/

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

		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: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  min-height: 100vh;
  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: fixed;
  width: 100vw;
  background-color: #fff;
  z-index: 100;
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
}

@media not all and (min-width: 999px){
  .header__wrap {
    padding-left: 20px;
    height: 67px;
  }
}

.header__logo-area {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 0 26px;
}

@media not all and (min-width: 1150px){
  .header__logo-area {
    gap: 0 10px;
  }
}

.header__logo a {
  display: flex;
  flex-direction: column;
}

.header__logo .sub {
  font-size: 12px;
}

.header__logo .main {
  display: flex;
  align-items: center;
  gap: 0 10px;
  color: #00244e;
  font-size: 29px;
  font-weight: 700;
}

@media not all and (min-width: 1380px){
  .header__logo .sub {
    font-size: 10px;
  }

  .header__logo .main {
    font-size: 19px;
  }
}

@media not all and (min-width: 999px){
  .header__logo {
    width: 230px;
    height: 46px;
    background-image: url(./assets/images/common/header-logo-sp.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .header__logo .sub,
  .header__logo .main {
    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__logo .main-add {
  padding: 7px;
  font-size: 14px;
  background-color: #d5ebe4;
}

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


@media (any-hover: hover) {
  .header__logo a:hover {
    text-decoration: none;
    opacity: .7;
  }
}

.header__logo a:focus-visible {
  text-decoration: none;
  opacity: .7;
}

@media not all and (min-width: 999px){
  .header__logo-icon {
    display: none;
  }
}

.header__cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@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;
  }
}

@media not all and (min-width: 1150px){
  .header__cta .tel {
    margin-right: 10px;
  }
}

.header__cta .tel a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 12px;
  color: #00244e;
  font-size: 29px;
  font-weight: 800;
}

@media (any-hover: hover) {
  .header__cta .tel a:hover {
    text-decoration: none;
    opacity: .7;
  }
}

@media not all and (min-width: 1380px){
  .header__cta .tel a {
    gap: 0 6px;
    font-size: 20px;
  }
}

.header__cta .tel a:focus-visible {
  text-decoration: none;
  opacity: .7;
}

.header__cta .contact {
  margin-inline: 9px 25px;
}

@media not all and (min-width: 1150px){
  .header__cta .contact {
    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 .contact a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 6px;
  padding: 7px;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  background-color: #39b54a;
  border-radius: 50vh;
}

@media (any-hover: hover) {
  .header__cta .contact a:hover {
    text-decoration: none;
    opacity: .7;
  }
}

.header__cta .contact a:focus-visible {
  text-decoration: none;
  opacity: .7;
}

.header__cta .button a {
  display: block;
  width: 280px;
  height: 96px;
}

.header__cta .button a:hover {
  background-image: url(./assets/images/common/header-button_hover.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.header__cta .button a:hover img {
  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-sp-button {
  display: none;
  margin-right: 10px;
  width: 40px;
  height: 30px;
  border: none;
  background: transparent;
  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: 3px;
  margin: 6px 0;
  background-color: #39b54a;
  transition: all 0.3s ease;
}

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

.header-sp-nav {
  position: fixed;
  top: 0;
  right: -100%;
  padding-block: 97px 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 {
  border-bottom: 1px solid #73c7ce;
}

.header-sp-nav__list li a {
  display: block;
  position: relative;
  padding: 20px;
  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;
}

.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: #00244e;
}

.header-sp-nav__cta-contact a {
  background-color: #39b54a;
}

@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 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: #00244e;
  padding-inline: 30px;
  font-size: 22px;
  font-weight: 700;
  background-color: #fff;
  border: 2px solid #00244e;
  border-radius: 50vh;
  overflow: hidden;
}

.section-button a::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: #00244e;
  z-index: 1;
}

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

.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;
}

@media (any-hover: hover) {
  .section-button a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #39b54a;
  }
}

.section-button a:focus-visible {
  color: #fff;
  text-decoration: none;
  background-color: #39b54a;
}


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

.home-mv {
  display: flex;
	justify-content: space-between;
/* 	flex-wrap: wrap; */
}

.home-mv__item {
  width: 50vw;
  height: calc(100vh - 96px);
}

@media not all and (min-width: 999px){
	.home-mv {
		flex-direction: column;
	}
  .home-mv__item {
    width: 100vw;
    height: calc(50vh - 68px);
  }
}

.home-mv__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  gap: 45px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media not all and (min-width: 999px){
  .home-mv__item a {
    gap: 40px;
  }
}

.home-mv__item a:hover {
  text-decoration: none;
}

.home-mv__item a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
  transition: scale .3s;
  z-index: -1;
}

.home-mv__left a::before {
  background-image: url(./assets/images/home/home-mv-left-bg.jpg);
}

.home-mv__right a::before {
  background-image: url(./assets/images/home/home-mv-right-bg.jpg);
}

@media (any-hover: hover) {
  .home-mv__item a:hover::before {
    scale: 110%;
  }
}

.home-mv__item a:focus-visible::before {
  translate: 110%;
}

.home-mv__text {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  writing-mode: vertical-rl;
}

@media not all and (min-width: 999px){
  .home-mv__text {
    font-size: 14px;
    writing-mode: horizontal-tb;
  }
}

a .home-mv__button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
  height: 80px;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  border: 1px solid #fff;
  border-radius: 50vh;
}

@media not all and (min-width: 999px){
  a .home-mv__button {
    width: 228;
    height: 38px;
  }
}

a .home-mv__left-button {
  background-color: #006f85;
}

a .home-mv__right-button {
  background-color: #e95504;
}

@media (any-hover: hover) {
  a:hover .home-mv__left-button {
    color: #006f85;
    background-color: #fff;
    border: 1px solid #006f85;
  }

  a:hover .home-mv__right-button {
    color: #e95504;
    background-color: #fff;
    border: 1px solid #e95504;
  }
}

a:focus-visible .home-mv__left-button {
  color: #006f85;
  background-color: #fff;
  border: 1px solid #006f85;
}

a:focus-visible .home-mv__right-button {
  color: #e95504;
  background-color: #fff;
  border: 1px solid #e95504;
}

a .home-mv__button .sub {
  font-size: 14px;
}

a .home-mv__button .main {
  font-size: 24px;
}

@media not all and (min-width: 999px){
  a .home-mv__button .sub {
    font-size: 7px;
  }

  a .home-mv__button .main {
    font-size: 14px;
  }
}

.home-mv-cta {
  position: relative;
  margin-bottom: 240px;
  padding-top: 80px;
  overflow: hidden;
}

.home-mv-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 500px;
  background-image: url(./assets/images/home/home-mv-cta-bg.svg);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
  z-index: -1;
}

@media not all and (min-width: 999px){
  .home-mv-cta {
    margin-bottom: 80px;
    padding-top: 30px;
  }

  .home-mv-cta::before {
    height: 400px;
  }
}

@media not all and (min-width: 768px){
  .home-mv-cta::before {
    height: 320px;
  }
}

@media not all and (min-width: 468px){
  .home-mv-cta {
    margin-bottom: 60px;
  }

  .home-mv-cta::before {
    height: 240px;
  }
}

@media not all and (min-width: 368px){
  .home-mv-cta::before {
    height: 180px;
  }
}

.home-mv-cta__hreading {
  margin-inline: auto;
  margin-bottom: 50px;
  width: fit-content;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

@media not all and (min-width: 999px){
  .home-mv-cta__hreading {
    margin-bottom: 25px;
    font-size: 15px;
  }
}

@media not all and (min-width: 999px){
  .home-mv-cta__img img {
    margin-inline: auto;
    width: 80%;
  }
}

.home-mv-cta__img {
  margin-inline: auto;
  width: fit-content;
}

.home-mv-cta__button a {
  display: block;
  margin-inline: auto;
  width: fit-content;
}

@media (any-hover: hover) {
  .home-mv-cta__button a:hover {
    text-decoration: none;
    opacity: .7;
  }
}

.home-mv-cta__button a:focus-visible {
  text-decoration: none;
  opacity: .7;
}

.home-hero-section {
  margin-bottom: 160px;
}

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

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

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

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

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

  .home-hero-image {
    width: 100%;
  }
}

.home-hero-contents__heading {
  margin-bottom: 80px;
  font-size: 44px;
  line-height: 1.6;
}

@media not all and (min-width: 999px){
  .home-hero-contents__heading {
    margin-bottom: 40px;
    font-size: 29px;
  }
}

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

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

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

.home-hero-image__name {
  position: absolute;
  top: 80px;
  right: 0;
  writing-mode: vertical-rl;
}

@media not all and (min-width: 999px){
  .home-hero-image__name {
    top: 40px;
  }
}

.home-hero-image__name .position {
  display: block;
  font-size: 17px;
}

.home-hero-image__name .name {
  display: block;
  font-size: 40px;
}

@media not all and (min-width: 768px){
  .home-hero-image__name .position {
    font-size: 14px;
  }

  .home-hero-image__name .name {
    display: block;
    font-size: 32px;
  }
}

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

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

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

.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: 570px;
  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;
    width: 335px;
    font-size: 25px;
  }
}

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

.home-section-heading .jp::before,
.home-section-heading .jp::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url(./assets/images/common/section-heading-icon.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.home-section-heading .en {
  color: #39b54a;
  text-transform: uppercase;
}

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

.home-cta {
  padding-block: 160px;
  background-image: url(./assets/images/home/home-cta-bg.jpg);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

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

.home-cta__wrap {
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1576px;
  color: #fff;
}

.home-cta__heading {
  margin-bottom: 80px;
  font-size: 48px;
  line-height: 1.6;
	text-align: center;
}

@media not all and (min-width: 999px){
  .home-cta__heading {
    margin-bottom: 40px;
    font-size: 29px;
  }
}

.home-cta__text {
	margin:0 auto;
  max-width: 768px;
}

.home-cta__text p {
	text-align: center;
  margin-bottom: 40px;
}

.home-cta__text-link {
	text-align: center;
}

.home-cta__text-link a {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

@media not all and (min-width: 999px){
  .home-cta__text-link a {
    font-size: 17px;
  }
}

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

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

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

.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__text {
    margin-bottom: 40px;
    font-size: 18px;
  }

  .home-mail-mg__icon {
    position: relative;
    bottom: auto;
    left: auto;
    margin-inline: auto;
    margin-bottom: 40px;
    width: fit-content;
  }
}


/* blog */

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

.blog-archive__item {
  width: 24%;
}

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

  .blog-archive__item {
    margin-bottom: 20px;
    width: 100%;
  }
}

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

.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;
}


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

		Footer

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

.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: 70px;
    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-cta-list {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

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

.footer-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){
  .footer-cta-list__item a {
    flex-direction: column;
    gap: 0;
    height: 80px;
  }
}

.footer-cta-list__tel a {
  background-color: #00244e;
}

.footer-cta-list__contact a {
  background-color: #39b54a;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-nav {
  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 {
    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 #00244e;
}

@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: #39b54a;
  font-size: 42px;
}

.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(./assets/images/common/footer-nav-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (any-hover: hover) {
  .footer-nav__list a:hover::after {
    background-image: url(./assets/images/common/footer-nav-icon_hover.svg);
  }
}

.footer-nav__list a:focus-visible::after {
  background-image: url(./assets/images/common/footer-nav-icon_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: #39b54a;
  }
}

.footer-nav__list a:focus-visible .name {
  color: #39b54a;
}

.copyright {
  padding: 30px 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  background-color: #00244e;
}

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

.fixed-sp-nav {
  display: none;
  z-index: 1000;
}

@media not all and (min-width: 999px){
  .fixed-sp-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 70px;
  }

  .fixed-sp-nav ul {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
    height: 100%;
    border: 2px solid #fff;
  }

  .fixed-sp-nav__item01 {
    width: 40%;
  }

  .fixed-sp-nav__item02,
  .fixed-sp-nav__item03,
  .fixed-sp-nav__item04 {
    width: 20%;
  }

  .fixed-sp-nav__item01 a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-wrap: wrap;
    font-weight: 700;
    line-height: 1.4;
    background-color: #00244e;
  }

  .fixed-sp-nav__item01 a .circle {
    display: grid;
    place-content: center;
    width: 40px;
    height: 40px;
    color: #ff0000;
    font-size: 14px;
    background-color: #ffff00;
    border-radius: 50vh;
  }

  .fixed-sp-nav__item01 a p {
    width: fit-content;
  }

  .fixed-sp-nav__item01 a .sub {
    display: inline-block;
    color: #fff;
    font-size: 13px;
  }
  .fixed-sp-nav__item01 a .main {
    display: inline-block;
    color: #ffff00;
    font-size: 18px;
  }

  .fixed-sp-nav__item02 a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    height: 100%;
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    background-color: #006f85;
  }

  .fixed-sp-nav__item02 a .main {
    font-size: 17px;
  }

  .fixed-sp-nav__item02 a .sub {
    font-size: 10px;
  }

  .fixed-sp-nav__item02 a::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    width: 12px;
    height: 12px;
    background-image: url(./assets/images/common/fixed-arrow-icon-w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .fixed-sp-nav__item03 a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    height: 100%;
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    background-color: #e95504;
  }

  .fixed-sp-nav__item03 a::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    width: 12px;
    height: 12px;
    background-image: url(./assets/images/common/fixed-arrow-icon-w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .fixed-sp-nav__item03 a .main {
    font-size: 17px;
  }

  .fixed-sp-nav__item03 a .sub {
    font-size: 10px;
  }

  .fixed-sp-nav__item04 a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    height: 100%;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    background-color: #39b54a;
  }

  .fixed-sp-nav__item04 a img {
    width: 13px;
  }
}

@media not all and (min-width: 768px){
  .fixed-sp-nav__item01 a p {
    display: flex;
    flex-direction: column;
  }
}

@media not all and (min-width: 390px){
  .fixed-sp-nav__item01 a .circle {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .fixed-sp-nav__item01 a .sub {
    font-size: 10px;
  }
  .fixed-sp-nav__item01 a .main {
    font-size: 15px;
  }
}
