/*
Theme Name: toakankyo Template vol.1
Theme URI:　
Version: 1.01
*/

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

		Base CSS

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

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

:root {
  --font-size-12: .75rem;
  --font-size-13: .8125rem;
  --font-size-14: .875rem;
  --font-size-15: .9375rem;
  --font-size-16: 1rem;
  --font-size-18: 1.125rem;
  --font-size-20: 1.25rem;
  --font-size-24: 1.5rem;
  --font-size-26: 1.625rem;
  --font-size-28: 1.75rem;
  --font-size-30: 1.875rem;
  --font-size-40: 2.5rem;
  --font-size-50: 3.125rem;
  --font-size-54: 3.375rem;
  --font-size-60: 3.75rem;
  --font-size-70: 4.375rem;
  --font-size-80: 5rem;
}

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: #2A2A2A;
  font-size: var(--font-size-16);
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

body.no-scroll {
  overflow: hidden;
}

: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: #2A2A2A;
  text-decoration: none;
  transition: .3s;
}

@media (any-hover: hover) {
  a:hover {
    color: #2A2A2A;
    text-decoration: underline;
  }
}

a:focus-visible {
  color: #2A2A2A;
  text-decoration: underline;
}



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

		Header

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

.header__fixed {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100vw;
  z-index: 100;
}

.header__container {
  display: flex;
  flex-direction: column-reverse;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1240px;
}

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

@media not all and (min-width: 768px){
  .header__logo {
    width: 240px;
  }
}

@media not all and (min-width: 368px){
  .header__logo {
    width: 180px;
  }
}

@media (any-hover: hover) {
  .header__logo a:hover {
    opacity: .5;
  }
}

.header__logo a:focus-visible {
  opacity: .5;
}

.header__gnav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 30px;
  padding: 19px 30px;
  background-color: #fff;
  border-radius: 50vh;
}

.header__gnav-list a {
  position: relative;
  color: #0048A0;
}

.header__gnav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0048A0;
  transition: width .3s ease-out;
}

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

  .header__gnav-list a:hover::after {
    width: 100%;
  }
}

.header__gnav-list a:focus-visible {
  text-decoration: none;
}

.header__gnav-list a:focus-visible::after {
  width: 100%;
}

.header__login-button {
  margin-left: auto;
}

.header__login-button a {
  display: inline-block;
  position: relative;
  margin-bottom: 5px;
  color: #fff;
  font-size: var(--font-size-15);
}

.header__login-button a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width .3s ease-out;
}

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

  .header__login-button a:hover::after {
    width: 100%;
  }
}

.header__login-button a:focus-visible {
  text-decoration: none;
}

.header__login-button a:focus-visible::after {
  width: 100%;
}

@media not all and (min-width: 980px){
  .header__gnav,
  .header__login-button {
    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;
  position: relative;
  z-index: 1000;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

@media not all and (min-width: 980px){
  .header__sp-button {
    display: block;
  }
}

.header__sp-button .line {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 25px;
  height: 2px;
  background-color: #fff;
  transition: all .3s ease-in-out;
}

.header__sp-button .line::before,
.header__sp-button .line::after {
  content: '';
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 25px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.header__sp-button .line::before {
  top: -10px;
}

.header__sp-button .line::after {
  top: 10px;
}

.header__sp-button.is-open .line {
  background-color: transparent;
}

.header__sp-button.is-open .line::before {
  top: 0;
  transform: rotate(45deg);
}

.header__sp-button.is-open .line::after {
  top: 0;
  transform: rotate(-45deg);
}

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

.header__sp-nav {
  position: fixed;
  top: 80px;
  right: 0;
  translate: 100% 0;
  padding: 20px;
  max-width: 400px;
  height: fit-content;
  background-image: linear-gradient(180deg, #2B68C4 0%, #2DBADD 100%);
  transition: .3s ease-in-out;
  border-radius: 20px 0 0 20px;
  z-index: 999;
}

.header__sp-nav.is-open {
  translate: 0;
}

.header__sp-nav li {
  border-bottom: 1px solid #2DBADD;
}

.header__sp-nav a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  font-size: var(--font-size-15);
  font-weight: 700;
}

@media (any-hover: hover) {
  .header__sp-nav a:hover {
    text-decoration: none;
    background-color: #2B68C4;
  }
}

.header__sp-nav a:focus-visible {
  text-decoration: none;
  background-color: #2B68C4;
}


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

		Contents

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

/*
	general
/////////////////////////////////////////////////////////*/

.page-mv {
  height: 430px;
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.about-mv-bg {
  background-image: url(./assets/images/about/about-header-bg.jpg);
}

.company-mv-bg {
  background-image: url(./assets/images/common/company-header-bg.jpg);
}

.works-mv-bg {
  background-image: url(./assets/images/works/works-header-bg.jpg);
}

.works-taxonomy-mv-bg {
  background-image: url(./assets/images/works/works-header-bg02.jpg);
}

.topics-mv-bg {
  background-image: url(./assets/images/topics/topics-header-bg.jpg);
}

.contact-mv-bg {
  background-image: url(./assets/images/common/contact-header-bg.jpg);
}

.privacy-mv-bg {
  background-image: url(./assets/images/common/privacy-header-bg.jpg);
}

@media not all and (min-width: 768px){
  .page-mv {
    height: 300px;
  }
}

.page-mv__area {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-inline: auto;
  padding-top: 120px;
  padding-inline: 20px;
  max-width: 1240px;
  height: 100%;
  color: #fff;
  font-weight: 700;
}

.page-mv__title {
  font-size: var(--font-size-50);
}

.page-mv__title-en {
  font-size: var(--font-size-18);
}

@media not all and (min-width: 768px){
  .page-mv__area {
    padding-top: 80px;
  }

  .page-mv__title {
    font-size: var(--font-size-30);
  }

  .page-mv__title-en {
    font-size: var(--font-size-14);
  }
}

.section-area {
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1240px;
}

.breadcrumb {
  padding-block: 50px 90px;
  position: relative;
  z-index: 10;
}

@media not all and (min-width: 768px){
  .breadcrumb {
    padding-block: 40px;
  }
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #0048A0;
  font-size: var(--font-size-14);
  font-weight: 500;
}

@media not all and (min-width: 768px){
  .breadcrumb__list {
    gap: 5px 10px;
    font-size: var(--font-size-12);
  }
}

.breadcrumb__list li:not(:last-child)::after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  rotate: 20deg;
  width: 1px;
  height: 14px;
  background-color: #84A5E3;
}

.breadcrumb__list a {
  color: #84A5E3;
}

.page-container {
  margin-bottom: 70px;
}

.gradient-heading {
  width: fit-content;
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(90deg, #00A5B6 0, #001950 100%);
}

.page-hero {
  margin-bottom: 90px;
}

.page-hero__heading {
  margin-bottom: 30px;
  font-size: var(--font-size-30);
  font-weight: 700;
}

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

  .page-hero__heading {
    margin-bottom: 20px;
    font-size: var(--font-size-24);
  }
}

.text-asbestos{
  margin-bottom: 40px;
}

.section-heading {
  margin-bottom: 20px;
  color: #0048A0;
  font-size: var(--font-size-24);
  font-weight: 700;
}

@media not all and (min-width: 768px){
  .section-heading {
    margin-bottom: 20px;
    font-size: var(--font-size-18);
  }
}

.more-button a {
  display: grid;
  place-content: center;
  width: 168px;
  height: 35px;
  color: #00A5B6;
  background-color: #fff;
  border: 3px solid #00A5B6;
  border-radius: 50vh;
}

.more-button.center a {
  margin-inline: auto;
}

@media (any-hover: hover) {
  .more-button a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #00A5B6;
  }
}

.more-button a:focus-visible {
  color: #fff;
  text-decoration: none;
  background-color: #00A5B6;
}

.gradient-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  width: fit-content;
  color: #fff;
  text-transform: uppercase;
  background-image: linear-gradient(90deg, #055CDE 0, #2DBADD 100%);
  box-shadow: 3px 0 16px rgb(5 50 113 / .25);
  transition: .3s ease;
  border-radius: 50vh;
}

.gradient-button a::after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background-color: #fff;
  transition: .3s ease;
  border-radius: 50vh;
}

@media not all and (min-width: 768px){
  .gradient-button a {
    margin-inline: auto;
  }
}

@media (any-hover: hover) {
  .gradient-button a:hover {
    text-decoration: none;
    box-shadow: 3px 0 16px rgb(5 50 113 / .5);
  }

  .gradient-button a:hover::after {
    scale: 1.8;
  }
}

.gradient-button a:focus-visible {
  text-decoration: none;
  box-shadow: 3px 0 16px rgb(5 50 113 / .5);
}

.gradient-button a:focus-visible::after {
  scale: 1.8;
}

.page-cta {
  padding-block: 100px;
  background-image: url(./assets/images/common/cta-bg.png);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}

@media not all and (min-width: 768px){
  .page-cta {
    padding-block: 50px 30px;
  }
}

@media not all and (min-width: 468px){
  .page-cta {
    background-size: contain;
  }
}

.page-cta__box {
  position: relative;
  margin-inline: auto;
  padding: 60px;
  max-width: 880px;
  background-image: linear-gradient(90deg, #fff 0, #B5D6FF 100%);
  box-shadow: 0 4px 4px rgb(0 0 0 / .25);
  border-radius: 30px;
}

@media not all and (min-width: 768px){
  .page-cta__box {
    padding: 30px 20px;
    border-radius: 20px;
  }
}

.page-cta__heading {
  margin-block: -100px 40px;
  margin-inline: auto;
  width: fit-content;
  color: transparent;
  font-size: var(--font-size-60);
  font-weight: 700;
  background-image: linear-gradient(90deg, #00A5B6 0, #001950 100%);
  background-clip: text;
}

@media not all and (min-width: 768px){
  .page-cta__heading {
    margin-block: -60px 30px;
    font-size: var(--font-size-40);
  }
}

@media not all and (min-width: 568px){
  .page-cta__heading {
    margin-block: -50px 20px;
    font-size: var(--font-size-30);
  }
}

@media not all and (min-width: 368px){
  .page-cta__heading {
    margin-block: -50px 20px;
    font-size: var(--font-size-24);
  }
}

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

.page-cta__text {
  order: 2;
  width: calc(100% - 400px);
  color: #0048A0;
  line-height: 1.4;
}

.page-cta__button {
  order: 3;
  width: 195px;
}

.page-cta__icon {
  order: 1;
  width: 152px;
}

@media not all and (min-width: 768px){
  .page-cta__text {
    width: calc(100% - 220px);
  }

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

  .page-cta__icon img {
    margin-inline: auto;
  }
}

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

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

/*
   for asbesto-lp
/////////////////////////////////////////////////////////*/

.asbesto_lp__button {
  order: 3;
  width: 50%;
  margin-left: 100px;
}

@media not all and (min-width: 468px){
  .asbesto_lp__button {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0px;
  }
}

.page-hero-flex{
  display:flex;
  flex-wrap: wrap;
}

/*
  top
/////////////////////////////////////////////////////////*/

.top-section__hgroup {
  margin-bottom: 40px;
}

.top-section__heading {
  margin-bottom: 20px;
  color: #00A5B6;
  font-size: var(--font-size-40);
}

@media not all and (min-width: 768px){
  .top-section__hgroup {
    margin-bottom: 30px;
  }

  .top-section__heading {
    margin-bottom: 10px;
    font-size: var(--font-size-30);
  }

  .top-section__heading-en {
    font-size: var(--font-size-13);
  }
}

@media not all and (min-width: 568px){
  .top-section__hgroup {
    margin-bottom: 20px;
  }

  .top-section__heading {
    font-size: var(--font-size-26);
  }

  .top-section__heading-en {
    font-size: var(--font-size-13);
  }
}

.top-mv {
  height: 590px;
  background-image: url(./assets/images/top/top-mv-bg.jpg);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

@media not all and (min-width: 568px){
  .top-mv {
    height: 380px;
  }
}

.top-mv__area {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1240px;
  height: 100%;
  color: #fff;
  font-weight: 700;
}

.top-mv__main {
  margin-bottom: 10px;
  font-size: var(--font-size-50);
  line-height: 1.4;
}

.top-mv__en {
  margin-bottom: 80px;
  font-size: var(--font-size-18);
}

@media not all and (min-width: 768px){
  .top-mv__main {
    font-size: var(--font-size-40);
  }

  .top-mv__en {
    margin-bottom: 40px;
    font-size: var(--font-size-18);
  }
}

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

  .top-mv__en {
    font-size: var(--font-size-15);
  }
}

@media not all and (min-width: 368px){
  .top-mv__main {
    font-size: var(--font-size-26);
  }

  .top-mv__en {
    font-size: var(--font-size-13);
  }
}

.top-mv__area .newline {
  display: inline-block;
}

.top-mv-news {
  width: 100vw;
}

.top-mv-news a {
  display: block;
  padding: 8px 20px;
  width: 100vw;
  color: #fff;
  text-align: center;
  background-color: #FFA601;
}

@media not all and (min-width: 768px){
  .top-mv-news a {
    font-size: var(--font-size-13);
  }
}

@media (any-hover: hover) {
  .top-mv-news a:hover {
    text-decoration: none;
    background-color: #e89700;
  }
}

.top-mv-news a:focus-visible {
  text-decoration: none;
  background-color: #e89700;
}

.top-about {
  position: relative;
  padding-bottom: 80px;
  background-image: linear-gradient(180deg, #2B68C4 0%, #2DBADD 100%);
}

.top-about__contents {
  position: absolute;
  top: 120px;
  left: 50%;
  translate: -50% 0;
  width: 30%;
  color: #fff;
  z-index: 1;
}

@media not all and (min-width: 1100px){
  .top-about__contents {
    position: absolute;
    top: 80px;
    width: 40%;
  }
}

@media not all and (min-width: 940px){
  .top-about__contents {
    position: relative;
    top: auto;
    left: auto;
    translate: 0;
    margin-inline: auto;
    padding-block: 80px;
    padding-inline: 20px;
    width: 100%;
    max-width: 600px;
  }
}

@media not all and (min-width: 568px){
  .top-about__contents {
    padding-block: 40px;
  }
}

.top-about .top-section__heading {
  color: #fff;
}

.top-about__text {
  margin-bottom: 60px;
}

@media not all and (min-width: 768px){
  .top-about__text {
    margin-bottom: 40px;
  }
}

.top-about__images {
  display: flex;
	justify-content: space-between;
  align-items: flex-end;
	flex-wrap: wrap;
  position: relative;
}

.top-about__images::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-image: url(./assets/images/top/top-about-bg.svg);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.top-about__images-item {
  width: 25%;
}

@media not all and (min-width: 940px){
  .top-about__images-item {
    width: 40%;
  }
}

@media not all and (min-width: 940px){
  .top-about__images-item {
    width: 45%;
  }
}

.top-about__images-item:nth-child(2) {
  margin-bottom: -40px;
}

.top-works {
  padding-top: 160px;
  height: 700px;
  background-image: url(./assets/images/top/top-works-bg.png);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

@media not all and (min-width: 768px){
  .top-works {
    padding-block: 160px;
    height: auto;
  }
}

@media not all and (min-width: 568px){
  .top-works {
    padding-block: 80px;
  }
}

.top-works__contents {
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1240px;
}

.top-works__text {
  margin-bottom: 60px;
  max-width: 480px;
}

.top-topics {
  padding-top: 64px;
}

.top-topics .top-section__hgroup {
  text-align: center;
}

.top-topics .topics-list {
  margin-bottom: 40px;
  padding-inline: 20px;
}

.top-company {
  padding-block: 210px 56px;
  background-image: url(./assets/images/top/top-company-bg.png);
  background-size: 100% cover;
	background-repeat: no-repeat;
	background-position: center bottom;
}

@media not all and (min-width: 768px){
  .top-company {
    padding-block: 120px 40px;
  }
}

@media not all and (min-width: 568px){
  .top-company {
    padding-block: 80px 40px;
  }
}

.top-company__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1240px;
}

.top-company__contents {
  width: 60%;
}

.top-company__text {
  margin-bottom: 60px;
}

.top-company__image {
  width: 37.5%;
}

@media not all and (min-width: 768px){
  .top-company__contents {
    margin-bottom: 40px;
    width: 100%;
  }

  .top-company__text {
    margin-bottom: 30px;
  }

  .top-company__image {
    width: 100%;
  }
}

.top-company__image img {
  width: 100%;
  border-radius: 20px;
}


/*
  about
/////////////////////////////////////////////////////////*/

.about-hero {
  position: relative;
  background-image: linear-gradient(180deg, #D1E5FF 0, #fff 100%);
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 443px;
  background-image: url(./assets/images/about/about-hero-before-bg.png);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
  z-index: 1;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 498px;
  background-image: url(./assets/images/about/about-hero-after-bg.png);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
  z-index: 1;
}

.about-hero__section {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.about-hero__section01 {
  margin-block: 40px;
}

@media not all and (min-width: 768px){
  .about-hero__section01 {
    margin-block: 0 60px;
  }
}

.about-hero__section02 {
  align-items: center;
  flex-direction: row-reverse;
}

.about-hero__contents {
  width: 46%;
}

.about-hero__image {
  width: 46%;
}

@media not all and (min-width: 768px){
  .about-hero__contents {
    margin-bottom: 40px;
    width: 100%;
  }

  .about-hero__image {
    width: 100%;
  }
}

.about-hero__section01 .about-hero__contents {
  margin-top: -80px;
}

@media not all and (min-width: 768px){
  .about-hero__section01 .about-hero__contents {
    margin-top: 0;
  }
}

.about-hero__heading {
  margin-bottom: 30px;
  font-size: var(--font-size-28);
}

@media not all and (min-width: 768px){
  .about-hero__heading {
    margin-bottom: 20px;
    font-size: var(--font-size-24);
  }
}

@media not all and (min-width: 768px){
  .about-hero__section02 .about-hero__image img {
    width: 50%;
  }
}

.about-history {
  position: relative;
  padding: 170px 20px 200px;
  background-image: linear-gradient(180deg, rgb(255 252 252 / .3) 0, rgb(181 214 255 / .8) 87%, rgb(218 233 253 / .55) 100%);
}

@media not all and (min-width: 768px){
  .about-history {
    padding: 50px 20px 100px;
  }
}

.about-history::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 890px;
  background-image: url(./assets/images/about/about-history-bg.jpg);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
  z-index: -1;
}

.about-history__heading {
  margin-bottom: 80px;
  color: #0048A0;
  font-size: var(--font-size-24);
  text-align: center;
}

@media not all and (min-width: 768px){
  .about-history__heading {
    margin-bottom: 30px;
  }
}

.about-history__list {
  position: relative;
  margin-inline: auto;
  max-width: 1000px;
}

.about-history__list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 1px;
  height: 100%;
  background-color: #0048A0;
}

.about-history__item {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  position: relative;
  margin-bottom: 30px;
}

@media not all and (min-width: 768px){
  .about-history__item {
    margin-bottom: 10px;
  }
}

.about-history__item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 20px;
  height: 20px;
  background-color: #0048A0;
  border-radius: 50vh;
}

.about-history__item.center {
  align-items: center;
}

.about-history__item-left,
.about-history__item-right {
  width: 40%;
}

.about-history__item-left {
  text-align: right;
}

.about-history__item-right {
  margin-left: auto;
}

.about-history__item .large {
  color: #0048A0;
  font-size: var(--font-size-70);
  font-weight: 600;
  line-height: 1.4;
}

.about-history__item .middle {
  color: #0048A0;
  font-size: var(--font-size-54);
  font-weight: 600;
  line-height: 1.4;
}

@media not all and (min-width: 768px){
  .about-history__item .large {
    font-size: var(--font-size-50);
  }

  .about-history__item .middle {
    font-size: var(--font-size-30);
  }
}

@media not all and (min-width: 468px){
  .about-history__item .large {
    font-size: var(--font-size-40);
  }

  .about-history__item .middle {
    font-size: var(--font-size-26);
  }
}

.about-history__item .text {
  max-width: 320px;
}

.about-history__item-left .text {
  margin-left: auto;
}

@media not all and (min-width: 768px){
  .about-history__item .text {
    font-size: var(--font-size-14);
  }
}

.about-initiatives {
  padding-top: 60px;
  background-color: #EAF3FF;
}

.about-initiatives__hero {
  margin-bottom: 50px;
}

.about-initiatives__heading {
  margin-inline: auto;
  margin-bottom: 20px;
  width: fit-content;
  color: #0048A0;
  font-size: var(--font-size-24);
}

.about-initiatives__hero-text {
  margin-inline: auto;
  max-width: 410px;
}

@media not all and (min-width: 768px){
  .about-initiatives {
    padding-top: 40px;
  }

  .about-initiatives__hero {
    margin-bottom: 30px;
  }

  .about-initiatives__heading {
    font-size: var(--font-size-20);
  }
}

.about-initiatives__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  gap: 40px 0;
}

.about-initiatives__item {
  display: flex;
  flex-direction: column;
  width: 32%;
}

@media not all and (min-width: 768px){
  .about-initiatives__item {
    width: 100%;
  }
}

.about-initiatives__item-heading {
  order: 2;
  margin-inline: auto;
  margin-bottom: 20px;
  width: fit-content;
  color: #0869E9;
  font-size: var(--font-size-24);
}

@media not all and (min-width: 768px){
  .about-initiatives__item-heading {
    font-size: var(--font-size-20);
  }
}

.about-initiatives__item-text {
  order: 3;
  margin-inline: auto;
  max-width: 400px;
}

.about-initiatives__image {
  order: 1;
  position: relative;
  margin-inline: auto;
  margin-bottom: 20px;
  width: fit-content;
  overflow: hidden;
}

/* ポップアップ非表示*/
/*
.about-initiatives__image::after {
  content: 'Click it !';
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: var(--font-size-24);
  font-weight: 600;
  background-color: rgb(95 94 94 / .67);
  border-radius: 50vh;
  transition: .3s ease;
  opacity: 0;
}

@media (any-hover: hover) {
  .about-initiatives__item:hover .about-initiatives__image::after {
    opacity: 1;
  }
}
*/

.about-initiatives__item:focus-visible .about-initiatives__image::after {
  opacity: 1;
}

body.modal-open {
  overflow: hidden;
}

.about-initiatives__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background-color: rgb(0 0 0 / .9);
  z-index: 100;
}

.about-initiatives__modal.is-active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-initiatives__modal-content {
  position: relative;
  padding: 40px;
  width: 90%;
  max-width: 780px;
  max-height: 80vh;
  background-color: #CBE2FF;
  border: 1px solid #888;
  border-radius: 20px;
  overflow-y: scroll;
}

.about-initiatives__modal-close-btn {
  position: absolute;
  top: 10px;
  right: 25px;
  color: #0048A0;
  font-size: var(--font-size-26);
  font-weight: 900;
  cursor: pointer;
}

.about-initiatives__modal-close-btn:hover,
.about-initiatives__modal-close-btn:focus {
  color: #000;
  text-decoration: none;
}

.about-initiatives__modal-heading {
  margin-block: 40px 20px;
  padding-bottom: 20px;
  color: #110083;
  font-size: var(--font-size-24);
  border-bottom: 1px solid #0048A0;
}

.about-initiatives__modal-ol {
  counter-reset: modal-ol;
}

.about-initiatives__modal-ol li {
  position: relative;
  padding-left: 1.5em;
}

.about-initiatives__modal-ol li:before {
  counter-increment: modal-ol;
  content: counter(modal-ol);
  display: grid;
  place-content: center;
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  font-size: var(--font-size-12);
  line-height: 1;
  border: 1px solid #000;
  border-radius: 50%;
}

.about-initiatives__modal-icons {
  display: flex;
	flex-wrap: wrap;
  gap: 3px;
  margin-top: 40px;
}

.about-initiatives__modal-icons li {
  width: 18%;
}

.about-cta {
  position: relative;
}

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

.about-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 464px;
  background-image: url(./assets/images/about/about-cta-bg.png);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
  z-index: 1;
}

.about-cta__container {
  position: relative;
  padding-block: 100px;
  z-index: 2;
}

@media not all and (min-width: 768px){
  .about-cta__container {
    padding-block: 50px;
  }
}

.about-cta__heading {
  margin-inline: auto;
  margin-bottom: 80px;
  width: fit-content;
  color: #0048A0;
  font-size: var(--font-size-50);
}

.about-cta__text {
  margin-inline: auto;
  margin-bottom: 80px;
  max-width: 600px;
}

@media not all and (min-width: 768px){
  .about-cta__heading {
    margin-bottom: 20px;
    font-size: var(--font-size-40);
  }

  .about-cta__text {
    margin-bottom: 40px;
  }
}

@media not all and (min-width: 768px){
  .about-cta__heading {
    font-size: var(--font-size-30);
  }
}

/*
  company
/////////////////////////////////////////////////////////*/

.company-section {
  margin-bottom: 70px;
}

@media not all and (min-width: 768px){
  .company-section {
    margin-bottom: 50px;
  }
}

.company-section-heading {
  margin-bottom: 30px;
  font-size: var(--font-size-30);
}

.company-data {
  border-bottom: 1px solid #9F9F9F;
}

.company-data dl {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
  border-top: 1px solid #9F9F9F;
  background-color: #F3F8FF;
}

.company-data dt {
  padding: 20px;
  width: 180px;
  font-weight: 700;
}

.company-data dd {
  padding: 20px;
  width: calc(100% -  180px);
  background-color: #fff;
}

@media not all and (min-width: 768px){
  .company-data dt {
    padding: 15px;
    width: 140px;
  }

  .company-data dd {
    padding: 15px;
    width: calc(100% -  140px);
  }
}

.company-data dd a {
  text-decoration: underline;
}

@media (any-hover: hover) {
  .company-data dd a:hover {
    text-decoration: none;
  }
}

.company-data dd a:focus-visible {
  text-decoration: none;
}

.company-section li {
  position: relative;
  padding-left: 1em;
  line-height: 2;
}

.company-section li::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 50vh;
}

.company-status {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.company-status__list {
  width: 48%;
}

@media not all and (min-width: 768px){
  .company-status__list {
    width: 100%;
  }
}

.company-qualification__list:not(:last-child) {
  margin-bottom: 80px;
}

@media not all and (min-width: 768px){
  .company-qualification__list:not(:last-child) {
    margin-bottom: 40px;
  }
}

.company-facilities {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.company-facilities__list {
  width: 32%;
}

@media not all and (min-width: 768px){
  .company-facilities__list {
    width: 100%;
  }
}



/*
  works archive
/////////////////////////////////////////////////////////*/

.works-archive-search {
  margin-inline: auto;
  margin-bottom: 60px;
  padding-block: 40px;
  max-width: 800px;
  background-image: linear-gradient(180deg, #0076BA 0, #40B5BB 100%);
  border-radius: 30px;
}

@media not all and (min-width: 768px){
  .works-archive-search {
    margin-bottom: 40px;
    padding-block: 30px;
    border-radius: 20px;
  }
}

.works-archive-search__heading {
  margin-bottom: 30px;
  color: #fff;
  font-size: var(--font-size-24);
  text-align: center;
}

@media not all and (min-width: 768px){
  .works-archive-search__heading {
    margin-bottom: 20px;
    font-size: var(--font-size-20);
  }
}

.works-archive-search__form {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 580px;
}

.works-archive-search__input {
  display: block;
  padding: 20px 30px;
  width: calc(100% - 120px);
  font-size: var(--font-size-16);
  background-color: #fff;
  border: none;
  border-radius: 50vh;
}

.works-archive-search__submit {
  display: block;
  padding: 20px 30px;
  width: 100px;
  color: #0048A0;
  font-size: var(--font-size-16);
  font-weight: 700;
  background-color: #fff;
  border: none;
  border-radius: 50vh;
  transition: .3s ease;
}

@media (any-hover: hover) {
  .works-archive-search__submit:hover {
    color: #fff;
    background-color: #0048A0;
  }
}

.works-archive-search__submit:focus-visible {
  color: #fff;
  background-color: #0048A0;
}

@media not all and (min-width: 768px){
  .works-archive-search__input {
    padding: 10px 20px;
    width: calc(100% - 90px);
    font-size: var(--font-size-14);
  }

  .works-archive-search__submit {
    padding: 10px 20px;
    width: 80px;
    font-size: var(--font-size-14);
  }
}

.works-archive-genre {
  margin-bottom: 100px;
}

@media not all and (min-width: 768px){
  .works-archive-genre {
    margin-bottom: 60px;
  }
}

.works-archive-genre__list {
  display: flex;
	flex-wrap: wrap;
  gap: 30px 2%;
}

.works-archive-genre__list-item {
  width: 32%;
}

@media not all and (min-width: 768px){
  .works-archive-genre__list {
    gap: 30px 0;
  }

  .works-archive-genre__list-item {
    width: 100%;
  }
}

.works-archive-genre__list-item a {
  display: flex;
  flex-direction: column;
}

@media (any-hover: hover) {
  .works-archive-genre__list-item a:hover {
    text-decoration: none;
    opacity: .5;
  }
}

.works-archive-genre__list-item a:focus-visible {
  text-decoration: none;
  opacity: .5;
}

.works-archive-genre__title {
  order: 2;
  margin-inline: auto;
  margin-bottom: 10px;
  width: fit-content;
  color: #0048A0;
  font-size: var(--font-size-18);
}

.works-archive-genre__text {
  order: 3;
}

.works-archive-genre__image {
  order: 1;
  margin-bottom: 20px;
}

.works-archive-genre__text li {
  position: relative;
  padding-left: 1em;
  font-size: var(--font-size-13);
}

.works-archive-genre__text li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 50vh;
}

.works-archive-genre__image img {
  width: 100%;
}

.works-archive-industry {
  margin-bottom: 100px;
}

@media not all and (min-width: 768px){
  .works-archive-industry {
    margin-bottom: 60px;
  }
}

.works-archive-industry__list {
  display: flex;
	flex-wrap: wrap;
  gap: 30px 2%;
}

.works-archive-industry__list-item {
  width: 32%;
}

@media not all and (min-width: 768px){
  .works-archive-industry__list {
    gap: 30px 0;
  }

  .works-archive-industry__list-item {
    width: 100%;
  }
}

.works-archive-industry__list-item a {
  display: flex;
  flex-direction: column;
}

@media (any-hover: hover) {
  .works-archive-industry__list-item a:hover {
    text-decoration: none;
    opacity: .5;
  }
}

.works-archive-industry__list-item a:focus-visible {
  text-decoration: none;
  opacity: .5;
}

.works-archive-industry__title {
  order: 2;
  margin-inline: auto;
  margin-bottom: 10px;
  width: fit-content;
  color: #0048A0;
  font-size: var(--font-size-18);
}

.works-archive-industry__image {
  order: 1;
  margin-bottom: 20px;
}

.works-archive-industry__image img {
  width: 100%;
}

.works-archive-buttons {
  margin-bottom: 60px;
}

.works-archive-buttons__box {
  margin-inline: auto;
  max-width: 960px;
  padding-block: 50px;
  background-color: #F3F8FF;
  border: 1px solid #E3E3E3;
  border-radius: 6px;
}

@media not all and (min-width: 768px){
  .works-archive-buttons {
    margin-bottom: 40px;
  }

  .works-archive-buttons__box {
    padding-block: 30px;
  }
}

.works-archive-buttons__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 740px;
}

.works-archive-buttons__list a {
  display: block;
  padding: 10px 30px;
  font-size: var(--font-size-13);
  line-height: 1.4;
  background-color: #fff;
  border: 1px solid #CFD0D1;
  border-radius: 50vh;
}

@media (any-hover: hover) {
  .works-archive-buttons__list a:hover {
    text-decoration: none;
    background-color: #e3e8f0;
    border: 1px solid #116AAF;
  }
}

.works-archive-buttons__list a:focus-visible {
  text-decoration: none;
  background-color: #e3e8f0;
  border: 1px solid #116AAF;
}

@media not all and (min-width: 768px){
  .works-archive-buttons__list a {
    padding: 5px 20px;
    font-size: var(--font-size-12);
  }
}

@media not all and (min-width: 768px){
  .works-archive-buttons__list a {
    padding: 5px 20px;
    font-size: var(--font-size-12);
  }
}

@media not all and (min-width: 368px){
  .works-archive-buttons__list a {
    padding: 3px 12px;
  }
}

.works-archive-map__contents {
  margin-inline: auto;
  max-width: 960px;
}

.works-archive-map__contents img {
  margin-bottom: 20px;
}

.works-archive-post {
  margin-bottom: 80px;
}

@media not all and (min-width: 768px){
  .works-archive-post {
    margin-bottom: 60px;
  }
}

.works-archive-post__list {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  gap: 10px 0;
}

.works-archive-post__list li {
  width: 49%;
}

@media not all and (min-width: 768px){
  .works-archive-post__list li {
    width: 100%;
  }
}

.works-archive-post__list a {
  display: grid;
  place-content: center;
  width: 100%;
  height: 70px;
  color: #fff;
  font-size: var(--font-size-18);
  font-weight: 600;
  background-image: linear-gradient(90deg, #2FBFE2 0, #B5D6FF);
  border-radius: 10px;
}

@media (any-hover: hover) {
  .works-archive-post__list a:hover {
    text-decoration: none;
    opacity: .5;
  }
}

.works-archive-post__list a:focus-visible {
  text-decoration: none;
  opacity: .5;
}

@media not all and (min-width: 768px){
  .works-archive-post__list a {
    height: 50px;
    font-size: var(--font-size-15);
    border-radius: 6px;
  }
}


/*
  works single
/////////////////////////////////////////////////////////*/

.works-single-wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  gap: 40px 0;
  margin-bottom: 60px;
}

.works-single-wrap__contents {
  width: 45%;
}

.works-single-wrap__image {
  width: 37%;
}

@media not all and (min-width: 1100px){
  .works-single-wrap__contents {
    width: 60%;
  }

  .works-single-wrap__image {
    width: 35%;
  }
}

@media not all and (min-width: 768px){
  .works-single-wrap__contents {
    width: 100%;
  }

  .works-single-wrap__image {
    width: 100%;
  }
}

.works-single-wrap__text {
  margin-bottom: 80px;
}

@media not all and (min-width: 768px){
  .works-single-wrap__text {
    margin-bottom: 30px;
  }
}

.works-single-wrap__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.works-single-related {
  margin-inline: auto;
  padding-inline: 80px;
  max-width: 960px;
  background-color: #F3F8FF;
  border: 1px solid #E3E3E3;
  border-radius: 6px;
}

.works-single-related__item {
  padding-block: 50px;
}

.works-single-related__item:not(:last-child) {
  border-bottom: 1px solid #D9D9D9;
}

@media not all and (min-width: 768px){
  .works-single-related {
    padding-inline: 20px;
  }

  .works-single-related__item {
    padding-block: 20px;
  }
}

.works-single-related__heading {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  color: #116AAF;
  font-size: var(--font-size-16);
  font-weight: 400;
}

.works-single-related__heading::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 10px;
  width: 7px;
  height: 7px;
  background-image: linear-gradient(#AAEDFF 0, #6579D4 100%);
  border-radius: 50vh;
}

@media not all and (min-width: 768px){
  .works-single-related__heading {
    padding-left: 25px;
    font-size: var(--font-size-14);
  }

  .works-single-related__heading::before {
    top: 6px;
  }
}

.works-single-related__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.works-single-related__list a {
  display: block;
  padding: 10px 30px;
  color: #545454;
  font-size: var(--font-size-13);
  background-color: #fff;
  border: 1px solid #CFD0D1;
  border-radius: 50vh;
}

@media not all and (min-width: 768px){
  .works-single-related__list a {
    padding: 5px 20px;
    font-size: var(--font-size-12);
  }
}

@media (any-hover: hover) {
  .works-single-related__list a:hover {
    text-decoration: none;
    background-color: #e3e8f0;
    border: 1px solid #116AAF;
  }
}

.works-single-related__list a:focus-visible {
  text-decoration: none;
  background-color: #e3e8f0;
  border: 1px solid #116AAF;
}


/*
  topics archive
/////////////////////////////////////////////////////////*/

.topics-list {
  display: flex;
	flex-wrap: wrap;
  gap: 30px 2%;
  margin-inline: auto;
  max-width: 1240px;
}

.topics-list li {
  display: flex;
  flex-direction: column;
  width: 32%;
  box-shadow: 0 4px 4px rgb(0 0 0 / .25);
  border-radius: 20px;
  overflow: hidden;
}

@media not all and (min-width: 768px){
  .topics-list li {
    width: 100%;
  }
}

.topics-list__heading {
  order: 3;
  margin-inline: 30px;
  margin-bottom: 20px;
  font-size: var(--font-size-18);
}

.topics-list__description {
  order: 4;
  margin-inline: 30px;
  margin-bottom: 30px;
  line-height: 1.4;
}

.topics-list__cat {
  order: 2;
}

.topics-list__cat a {
  display: block;
  margin: 30px 30px 20px;
  padding: 5px 20px;
  width: fit-content;
  color: #fff;
  font-size: var(--font-size-12);
  font-weight: 700;
  background-color: #326DCB;
  border-radius: 50vh;
}

@media (any-hover: hover) {
  .topics-list__cat a:hover {
    text-decoration: none;
    background-color: #0b3e8f;
  }
}

.topics-list__cat a:focus-visible {
  text-decoration: none;
  background-color: #0b3e8f;
}

.topics-list__thumbnail {
  order: 1;
  overflow: hidden;
}

@media (any-hover: hover) {
  .topics-list__thumbnail a:hover {
    opacity: .5;
  }
}

.topics-list__thumbnail a:focus-visible {
  opacity: .5;
}

.topics-list__thumbnail img {
  width: 100%;
  transition: .3s ease;
}

@media (any-hover: hover) {
  .topics-list li a:hover .topics-list__thumbnail img {
    scale: 1.1;
  }
}

.topics-list li a:focus-visible .topics-list__thumbnail img {
  scale: 1.1;
}

.topics-list__more-text {
  order: 5;
  margin-inline: 30px;
  margin-bottom: 30px;
}

.topics-list__more-text a {
  display: block;
  position: relative;
  width: fit-content;
  color: #0879E9;
  font-weight: 500;
}

.topics-list__more-text a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0048A0;
  transition: width .3s ease-out;
}

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

  .topics-list__more-text a:hover::after {
    width: 100%;
  }
}

.topics-list__more-text a:focus-visible {
  text-decoration: none;
}

.topics-list__more-text a:focus-visible::after {
  width: 100%;
}

.pagenation {
  margin: 80px auto 0;
  width: fit-content;
}

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

.pagenation a {
  display: grid;
  place-content: center;
  width: 20px;
  height: 24px;
  border: 1px solid #001950;
}

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

.pagenation a:focus-visible {
  color: #fff;
  text-decoration: none;
  background-color: #001950;
}

.pagenation .prev span,
.pagenation .next span {
  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;
}

.pagenation .prev a,
.pagenation .next a {
  position: relative;
}

.pagenation .prev a::after,
.pagenation .next a::after {
  content: '';
  display: block;
  width: 9px;
  height: 14px;
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.pagenation .prev a::after {
  background-image: url(./assets/images/topics/icon-prev.svg);
}

.pagenation .next a::after {
  background-image: url(./assets/images/topics/icon-next.svg);
}

@media (any-hover: hover) {
  .pagenation .prev a:hover::after {
    background-image: url(./assets/images/topics/icon-prev-hover.svg);
  }

  .pagenation .next a:hover::after {
    background-image: url(./assets/images/topics/icon-next-hover.svg);
  }
}

.pagenation .prev a:focus-visible::after {
  background-image: url(./assets/images/topics/icon-prev-hover.svg);
}

.pagenation .next a:focus-visible::after {
  background-image: url(./assets/images/topics/icon-next-hover.svg);
}



/*
  topics single
/////////////////////////////////////////////////////////*/

.topics-single__header {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 60px;
}

.topics-single__title {
  font-size: var(--font-size-30);
  line-height: 1.4;
}

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

  .topics-single__title {
    font-size: var(--font-size-26);
  }
}

.topics-single__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 30px;
  margin-bottom: 20px;
}

.topics-single__meta .cat a {
  display: block;
  padding: 10px 30px;
  color: #fff;
  font-size: var(--font-size-14);
  background-color: #326DCB;
  border-radius: 50vh;
}

@media (any-hover: hover) {
  .topics-single__meta .cat a:hover {
    text-decoration: none;
    background-color: #0b3e8f;
  }
}

.topics-single__meta .cat a:focus-visible {
  text-decoration: none;
  background-color: #0b3e8f;
}

@media not all and (min-width: 768px){
  .topics-single__meta .cat {
    padding: 5px 20px;
  }
}

.topics-single__meta .time {
  color: #0048A0;
  font-size: var(--font-size-14);
}

.topics-single__main {
  margin-bottom: 100px;
}

.topics-single__thumbnail img {
  margin-inline: auto;
}

.topics-single__main img {
  margin-bottom: 40px;
}

.topics-single__main p {
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .topics-single__main {
    margin-bottom: 50px;
  }

  .topics-single__main img {
    margin-bottom: 30px;
  }

  .topics-single__main p {
    margin-bottom: 30px;
  }
}

.topics-single__main h2 {
  margin-block: 80px 30px;
  font-size: var(--font-size-26);
}

.topics-single__main h3 {
  margin-block: 60px 20px;
  font-size: var(--font-size-24);
}

@media not all and (min-width: 768px){
  .topics-single__main h2 {
    margin-block: 60px 20px;
    font-size: var(--font-size-24);
  }

  .topics-single__main h3 {
    margin-block: 40px 20px;
    font-size: var(--font-size-20);
  }
}

.topics-single__button a {
  margin-inline: auto;
}


/*
  contact
/////////////////////////////////////////////////////////*/

.form-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
  }
}

.form-item {
  margin-bottom: 30px;
}

.form-item--half {
  width: 48%;
}

@media not all and (min-width: 768px){
  .form-item--half {
    width: 100%;
  }
}

.form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

.required-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 6px;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  background-color: #FFA601;
  border-radius: 5px;
}

.form-item input[type="text"],
.form-item input[type="email"],
.form-item input[type="tel"],
.form-item select,
.form-item textarea {
  width: 100%;
  padding: 12px;
  font-size: var(--font-size-16);
  border: 1px solid #9F9F9F;
  border-radius: 4px;
}

.form-item select {
  color: #000;
  width: 280px;
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23333" viewBox="0 0 16 16"><path d="M7.247 11.14 2.451 6.883a.5.5 0 0 1 .354-.863h9.19a.5.5 0 0 1 .354.863L8.753 11.14a.5.5 0 0 1-.706 0z"/></svg>') no-repeat right 12px center;
  background-size: 16px;
}

textarea {
  resize: vertical;
}

.form-item--checkbox {
  margin-bottom: 30px;
}

.form-add {
  margin-top: 10px;
  font-size: var(--font-size-12);
}

.form-label-with-note {
  display: flex;
  align-items: flex-end;
  margin-bottom: 8px;
}

.form-label-with-note .form-label {
  margin-bottom: 0;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.checkbox-item {
  display: flex;
  align-items: center;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin-right: 8px;
}

.submit-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 30px auto 0;
  padding: 20px 40px;
  width: fit-content;
  color: #fff;
  font-size: var(--font-size-16);
  background-image: linear-gradient(90deg, #055CDE 0, #2DBADD 100%);
  border: none;
  border-radius: 50vh;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}

.submit-button::after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background-color: #fff;
  transition: .3s ease;
  border-radius: 50vh;
}

@media (any-hover: hover) {
  .submit-button:hover {
    text-decoration: none;
    box-shadow: 3px 0 16px rgb(5 50 113 / .5);
  }

  .submit-button:hover::after {
    scale: 1.8;
  }
}

.submit-button:focus-visible {
  text-decoration: none;
  box-shadow: 3px 0 16px rgb(5 50 113 / .5);
}

.submit-button:focus-visible::after {
  scale: 1.8;
}

.is-invalid-group .form-label {
  color: #ff6347 !important;
}

.is-invalid-group input,
.is-invalid-group select,
.is-invalid-group textarea {
  border-color: #ff6347 !important;
  box-shadow: 0 0 5px rgba(255, 99, 71, 0.5);
}

.policy-link{
  color: #0048A0;
}

/*
  privcy policy
/////////////////////////////////////////////////////////*/

.privacy-contents h2 {
  margin-block: 80px 30px;
  color: #0048A0;
  font-size: var(--font-size-24);
}

@media not all and (min-width: 768px){
  .privacy-contents h2 {
    margin-block: 60px 20px;
    font-size: var(--font-size-20);
  }
}

.privacy-contents h3 {
  font-size: var(--font-size-16);
  font-weight: 400;
}

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

.privacy-contents ul {
  margin-bottom: 30px;
}

.privacy-contents li {
  position: relative;
  padding-left: 2em;
}

.privacy-contents li::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 20px;
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 50vh;
}

.privacy-contents .sign {
  margin-top: 80px;
}

@media not all and (min-width: 768px){
  .privacy-contents .sign {
    margin-top: 60px;
  }
}


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

		Footer

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

.footer__wrap {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
  margin-inline: auto;
  padding-inline: 20px;
  padding-block: 40px;
  max-width: 1240px;
}

@media not all and (min-width: 768px){
  .footer__information {
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
  }

  .footer__logo {
    margin-inline: auto;
    width: fit-content;
  }

  .footer__nav {
    width: 100%;
  }
}

.footer__c-data {
  margin-bottom: 20px;
  color: #0048A0;
  font-size: var(--font-size-13);
}

.footer__nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

@media not all and (min-width: 768px){
  .footer__nav-list {
    justify-content: center;
    gap: 30px;
  }
}

@media not all and (min-width: 468px){
  .footer__nav-list {
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #ccc;
  }
}

.footer__nav-list a {
  position: relative;
  color: #0048A0;
  font-weight: 700;
}

.footer__nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0048A0;
  transition: width .3s ease-out;
}

@media not all and (min-width: 468px){
  .footer__nav-list li {
    width: 100%;
    text-align: center;
    border-top: 1px solid #ccc;
  }

  .footer__nav-list a {
    display: block;
    padding-block: 10px;
    width: 100%;
  }
}

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

  .footer__nav-list a:hover::after {
    width: 100%;
  }
}

.footer__nav-list a:focus-visible {
  text-decoration: none;
}

.footer__nav-list a:focus-visible::after {
  width: 100%;
}

.copyright {
  margin-bottom: 30px;
  font-size: var(--font-size-12);
  color: #0048A0;
  text-align: center;
}

.fixed-button {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 100;
}

.fixed-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 70px;
  height: 240px;
  color: #fff;
  letter-spacing: .3em;
  writing-mode: vertical-rl;
  background-color: #1D3A46;
  border-radius: 20px 0 0 20px;
}

@media (any-hover: hover) {
  .fixed-button a:hover {
    text-decoration: none;
    background-color: #2c5e73;
  }
}

.fixed-button a:focus-visible {
  text-decoration: none;
  background-color: #2c5e73;
}

@media not all and (min-width: 768px){
  .fixed-button a {
    width: 50px;
    height: 180px;
    border-radius: 12px 0 0 12px;
  }
}