@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #000;
}

.inner {
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .inner {
    margin-inline: auto;
    padding-inline: 110px;
  }
}

.section__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .section__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .text-space {
    margin-left: 9px;
  }
}
.section__title {
  font-size: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  padding-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .section__title {
    font-size: 36px;
    padding-bottom: 100px;
  }
}
.section__title::after {
  content: "";
  width: 100px;
  height: 1px;
  background: #000;
}
@media screen and (min-width: 768px) {
  .section__title::after {
    width: 385px;
  }
}

.section__button {
  text-align: center;
  margin-top: 50px;
}

.button {
  border-radius: 40px;
  border: 1px solid #000;
  background: #0067B7;
  padding: 8px 60px 8px;
  color: #fff;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .button {
    background: #FFF;
    color: #000;
  }
  .button:hover {
    background: #0067B7;
    color: #FFF;
  }
}
@media screen and (max-width: 400px) {
  .button {
    padding-left: 60px;
    padding-right: 60px;
  }
}

/*=====================================================
# header
======================================================*/
.header {
  height: 80px;
  background-color: #0067B7;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .header {
    background-color: #fff;
  }
}

.header__inner {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 50px;
  width: 50px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .header__logo img {
    height: 35px;
    width: 35px;
  }
}

.header__title {
  display: flex;
  align-items: center;
  color: #fff;
}

.header__title-name {
  font-size: 36px;
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  .header__title-name {
    font-size: 20px;
    color: #0067B7;
    margin-left: 10px;
  }
}

.header__icon {
  width: 25px;
  height: 25px;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .header__icon {
    display: block;
  }
}
.header__icon.is-checked .drawer__icon-bar:nth-child(1), .header__icon.is-checked .drawer__icon-bar:nth-child(3) {
  top: 9px;
}
.header__icon.is-checked .drawer__icon-bar:nth-child(1) {
  transform: rotate(45deg);
}
.header__icon.is-checked .drawer__icon-bar:nth-child(3) {
  transform: rotate(-45deg);
}
.header__icon.is-checked .drawer__icon-bar:nth-child(2) {
  display: none;
}

.drawer__icon-bar {
  position: absolute;
  width: 25px;
  height: 2px;
  left: 0;
  background-color: #0067B7;
  transition: top 0.4s, transform 0.4s;
}
.drawer__icon-bar:nth-child(1) {
  top: 0;
}
.drawer__icon-bar:nth-child(2) {
  top: 8px;
}
.drawer__icon-bar:nth-child(3) {
  top: 16px;
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .drawer__icon-bar {
    background-color: #FFF;
  }
}

@media screen and (min-width: 767px) and (max-width: 1100px) {
  .header__nav {
    display: none;
  }
}

.header__lists {
  display: flex;
  gap: 15px;
  color: #fff;
}
.header__lists a {
  position: relative;
}
.header__lists a::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}
.header__lists a:hover::after {
  transform: scale(1, 1);
}

.drawer__content {
  background-color: #222222;
  width: 100%;
  height: calc(100% - 80px);
  position: fixed;
  right: 0;
  top: 80px;
  padding: 82px 65px;
  transform: translateY(-120%);
  transition: transform 0.4s;
  z-index: 25;
}
.drawer__content.is-checked {
  transform: translateY(0);
}

.drawer__content-menu {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.drawer__content-link {
  text-align: center;
  color: #fff;
}

/*=====================================================
# FV
======================================================*/
.fv__inner {
  padding: 0;
}

.fv__img {
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__img {
    height: 800px;
  }
}

@media screen and (min-width: 768px) {
  .fv__img-slide {
    opacity: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 30s 0s infinite;
    animation: anime 30s 0s infinite;
  }
  .fv__img-slide:nth-of-type(2) {
    -webkit-animation-delay: 10s;
    animation-delay: 10s;
  }
  .fv__img-slide:nth-last-of-type(3) {
    -webkit-animation-delay: 20s;
    animation-delay: 20s;
  }
}

@keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
.fv__message {
  z-index: 50;
}

.fv__title {
  font-size: 25PX;
  font-weight: bold;
  width: 230px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  left: 16px;
  top: 30%;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 55px;
    width: 470px;
    height: 95px;
    left: 110px;
  }
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .fv__title {
    font-size: 40px;
    width: 350px;
    height: 70px;
  }
}

.fv__text {
  font-size: 25PX;
  font-weight: bold;
  width: 155px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: absolute;
  right: 16px;
  bottom: 30%;
  border-radius: 10px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .fv__text {
    font-size: 55px;
    width: 305px;
    height: 95px;
    bottom: 40%;
    left: 280px;
  }
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .fv__text {
    font-size: 40px;
    width: 350px;
    height: 70px;
  }
}

/*=====================================================
# intent
======================================================*/
.intent__message {
  display: flex;
  flex-direction: column;
  padding-inline: 15px;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  .intent__content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}

@media screen and (min-width: 768px) {
  .intent__box {
    width: 50%;
  }
}

.intent__img {
  display: none;
}
.intent__img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .intent__img {
    display: block;
  }
}

.intent__img-name {
  text-align: center;
  display: none;
  margin-top: 5vw;
  font-size: 25px;
}
@media screen and (min-width: 768px) {
  .intent__img-name {
    display: block;
  }
}

.intent__text {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .intent__text {
    font-size: 18px;
    line-height: 1.4;
  }
}

.intent__button {
  background: #E10048;
}
@media screen and (min-width: 768px) {
  .intent__button {
    background: #FFF;
    color: #000;
  }
  .intent__button:hover {
    background: #E10048;
    color: #fff;
  }
}

/*=====================================================
# report
======================================================*/
.report {
  background: #F4F4F4;
  opacity: 0.95;
}

.report__contents {
  padding: 30px 16px;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 768px) {
  .report__contents {
    padding: 60px 150px;
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .report__contents {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.report__table {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.report__table tr {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.report__table tr:not(:first-child) {
  padding-top: 10px;
}

.report__table-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

/*=====================================================
# about
======================================================*/
.about__contents {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .about__contents {
    flex-direction: row;
    width: 100%;
  }
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .about__contents {
    flex-direction: column;
    width: 100%;
  }
}

.about__box {
  position: relative;
}
.about__box img {
  width: 100%;
}

.about__head {
  font-size: 24px;
  color: #fff;
  position: absolute;
  top: 20px;
  transform: translateX(-50%);
  left: 50%;
}
@media screen and (min-width: 768px) {
  .about__head {
    font-size: 30px;
  }
}

.about__buttons {
  margin-top: 0;
}

.about__button {
  position: absolute;
  bottom: 20px;
  transform: translateX(-50%);
  left: 50%;
  width: 202px;
  height: 42px;
}
@media screen and (min-width: 768px) {
  .about__button {
    width: 150px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 400px) {
  .about__button {
    padding-left: 60px;
    padding-right: 60px;
  }
}

/*=====================================================
# event
======================================================*/
.event {
  background: #F4F4F4;
}

.event__content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .event__content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

.event__img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .event__img {
    width: 80%;
  }
}
.event__img img {
  width: 100%;
}

.event__textbox {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.event__text {
  display: none;
}
@media screen and (min-width: 768px) {
  .event__text {
    display: block;
    font-size: 18px;
  }
}

/*=====================================================
# recruiting
======================================================*/
.recruiting {
  padding: 50px 45px;
  background: url(/img/日出生台.png) no-repeat top center/cover;
}
@media screen and (max-width: 400px) {
  .recruiting {
    padding-left: 0;
    padding-right: 0;
  }
}

.recruiting__contents {
  width: 78.6666666667%;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .recruiting__contents {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 100px;
  }
}

.recruiting__box {
  display: flex;
  flex-direction: row;
  gap: 100px;
}

.recruiting__title {
  font-size: 25px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .recruiting__title::after {
    width: 170px;
  }
}

.recruiting__text {
  font-size: 18px;
}

.recruiting__img {
  max-width: 360px;
}
.recruiting__img img {
  width: 100%;
  height: 285px;
}
@media screen and (max-width: 768px) {
  .recruiting__img {
    display: none;
  }
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .recruiting__img {
    display: none;
  }
}

.recruiting__textbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 360px;
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .recruiting__textbox {
    background: #fff;
    opacity: 0.8;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*=====================================================
# footer
======================================================*/
.footer {
  background: #0067B7;
}

.footer__inner {
  padding: 16px 50px;
}

.footer__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer__list {
  color: #FFF;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .footer__list {
    font-size: 18px;
  }
  .footer__list a {
    position: relative;
  }
  .footer__list a::after {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transition: transform 0.3s; /*変形の時間*/
  }
  .footer__list a:hover::after {
    transform: scale(1, 1);
  }
}

.footer__title {
  color: #fff;
  text-align: center;
  font-size: 18px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .footer__title {
    font-size: 40px;
  }
}

.footer__pagetop {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: fixed;
  right: 20px;
  bottom: 192px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .footer__pagetop {
    width: 60px;
    height: 60px;
  }
}

.page__top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.page__top.is-show {
  opacity: 1;
  visibility: visible;
}

/* page__report
======================================================*/
.page__report {
  background: url(/img/温泉背景.png) no-repeat center center/cover;
}

.page__report-button {
  display: none;
}

/* page__organization
======================================================*/
.organization {
  background: url(/img/温泉背景.png) no-repeat center center/cover;
}

@media screen and (min-width: 768px) and (max-width: 1320px) {
  .organization__inner {
    padding-inline: 16px;
  }
}

.organization__contents {
  background: #fff;
  padding: 50px 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.organization__position {
  font-size: 3.73vw;
  padding: 1.33vw 2.66vw;
  border: 1px solid #000;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.position1 {
  position: relative;
}
.position1::after {
  content: "";
  position: absolute;
  bottom: -12.25vw;
  transform: translateX(-50%);
  left: 50%;
  height: 12.25vw;
  width: 1px;
  background: #000;
}

.organization__box {
  display: flex;
  margin-top: 1.33vw;
}

.position2 {
  position: relative;
}
.position2::after {
  content: "";
  position: absolute;
  right: -16.5vw;
  transform: translateY(-50%);
  top: 50%;
  height: 1px;
  width: 16.5vw;
  background: #000;
}

.position3 {
  position: relative;
}
.position3::after {
  content: "";
  position: absolute;
  left: -16.5vw;
  transform: translateY(-50%);
  top: 50%;
  height: 1px;
  width: 16.5vw;
  background: #000;
}

.position4 {
  margin-top: 2.66vw;
  position: relative;
}
.position4::after {
  content: "";
  position: absolute;
  bottom: -12.25vw;
  transform: translateX(-50%);
  left: 50%;
  height: 12.25vw;
  width: 1px;
  background: #000;
}

.position5 {
  position: relative;
}
.position5::after {
  content: "";
  position: absolute;
  right: -16.5vw;
  transform: translateY(-50%);
  top: 50%;
  height: 1px;
  width: 16.5vw;
  background: #000;
}

.position6 {
  position: relative;
}
.position6::after {
  content: "";
  position: absolute;
  left: -16.5vw;
  transform: translateY(-50%);
  top: 50%;
  height: 1px;
  width: 16.5vw;
  background: #000;
}

.position7 {
  margin-top: 2.66vw;
  position: relative;
}
.position7::after {
  content: "";
  position: absolute;
  bottom: -6vw;
  transform: translateX(-50%);
  left: 50%;
  height: 6vw;
  width: 1px;
  background: #000;
}

.position8 {
  margin-top: 5.8vw;
  position: relative;
}
.position8::after {
  content: "";
  position: absolute;
  bottom: -6vw;
  transform: translateX(-50%);
  left: 50%;
  height: 6vw;
  width: 1px;
  background: #000;
}

.box1 {
  position: relative;
}
.box1::before {
  content: "";
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 4.5vw;
  height: 1px;
  width: 75%;
  background: #000;
}

.position9 {
  margin-top: 10.8vw;
  position: relative;
}
.position9::after {
  content: "";
  position: absolute;
  top: -6.6vw;
  transform: translateX(-50%);
  left: 50%;
  height: 6.6vw;
  width: 1px;
  background: #000;
}

/* memorandum
======================================================*/
.page__memorandum {
  background: url(/img/温泉背景.png) no-repeat center center/cover;
}

.memorandum__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 50px 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.memorandum__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .memorandum__content {
    gap: 100px;
  }
}

.memorandum__container {
  display: flex;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .memorandum__container {
    font-size: 20px;
    letter-spacing: 10px;
    gap: 34.72vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .memorandum__container {
    gap: 30px;
    font-size: 18px;
  }
}

.memorandum__box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.memorandum__container-bank {
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.memorandum__container-bank::after {
  position: absolute;
  content: "";
  bottom: -5px;
  width: 270px;
  transform: translateX(-50%);
  left: 50%;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .memorandum__container-bank::after {
    width: 550px;
  }
}

@media screen and (min-width: 768px) {
  .memorandum__container-box {
    display: flex;
    flex-direction: column;
  }
}

.memorandum__box1 {
  max-width: 42.66vw;
}
@media screen and (min-width: 768px) {
  .memorandum__box1 {
    letter-spacing: 1px;
  }
}

.head1 {
  padding-bottom: 20px;
}

.memorandum__box-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* bylaws
======================================================*/
.bylaws__contents {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .bylaws__contents {
    padding-inline: 200px;
    gap: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .bylaws__contents {
    padding-inline: 0;
  }
}

.bylaws__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .bylaws__content {
    font-size: 20px;
  }
}

.bylaws__item {
  width: 115px;
  display: block;
}

.bylaws__box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bylaws__article-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bylaws__article-minor {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.bylaws__article-member {
  gap: 20px;
}

.bylaws__article-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.bylaws__article-casher {
  padding-left: 30px;
}

.bylaws__article-minor-count {
  padding-left: 30px;
}

/* event
======================================================*/
.page__event {
  background: url(/a-boukyou/img/温泉背景.png) no-repeat center center/cover;
}

.event__title {
  text-align: center;
  font-size: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .event__title {
    padding-bottom: 40px;
  }
}

.event__contents {
  padding: 30px 16px;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 768px) {
  .event__contents {
    padding: 60px 150px;
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .event__contents {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.event__tables {
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.event__tables:not(:nth-of-type(1)) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .event__tables {
    padding-top: 40px;
  }
}

.event__table {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.event__table tr {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.event__table tr:not(:first-child) {
  padding-top: 10px;
}

.event__table-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.event__subtitle {
  font-size: 18px;
  padding-bottom: 15px;
}
.event__subtitle:not(:nth-of-type(1)) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .event__subtitle:not(:nth-of-type(1)) {
    margin-top: 25px;
  }
}
@media screen and (min-width: 768px) {
  .event__subtitle {
    padding-bottom: 25px;
  }
}

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

/* contact
======================================================*/
.page__contact {
  background: url(/a-boukyou/img/温泉背景.png) no-repeat center center/cover;
}

.contact__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 50px 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.contact__content {
  padding-inline: 40px;
  max-width: 850px;
}
@media screen and (min-width: 768px) {
  .contact__content {
    font-size: 20px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 400px) {
  .contact__content {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.contact__container {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contact__container {
    flex-direction: row;
    gap: 50px;
  }
}

.contact__content-head {
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.contact__content-box {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 10px 0;
}
@media screen and (max-width: 400px) {
  .contact__content-box {
    gap: 2px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }
}

.contact__content-text {
  letter-spacing: 1.5px;
  padding-bottom: 30px;
  padding-top: 20px;
}

.contact__application {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 80px;
  padding-bottom: 5px;
  cursor: pointer;
  color: rgba(0, 103, 183, 0.8);
  border-bottom: 1px solid rgba(0, 103, 183, 0.3);
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .contact__application {
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
}
@media screen and (min-width: 768px) {
  .contact__application:hover {
    transition: 0.5s;
    color: #0067B7;
    border-bottom: 1px solid rgba(0, 103, 183, 0.3);
  }
}

.contact__address {
  padding-top: 0;
  gap: 20px;
}

.contact__content1 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 40px;
}
@media screen and (max-width: 400px) {
  .contact__content1 {
    font-size: 14px;
  }
}

.contact__content-name {
  padding-bottom: 10px;
}

.contact__form-box {
  background: #F4F4F4;
  padding: 30px 10px;
  margin: 30px 10px 0;
}
@media screen and (min-width: 768px) {
  .contact__form-box {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.contact__content-address-mail a {
  color: #0067B7;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .contact__content-address-tel a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .contact__content-address-tel a {
    color: #0067B7;
    text-decoration: underline;
  }
}

@media screen and (min-width: 768px) {
  .contact__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__item-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
}

.contact__item-required {
  font-size: 10px;
  padding: 1px 2px;
  color: #fff;
  background: #E10048;
  border-radius: 5px;
}

.contact__item-input--box {
  width: 100%;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .contact__item-input--box {
    height: 60px;
  }
}

.form-textarea {
  width: 100%;
  height: 150px;
}

.contact__footer {
  text-align: center;
}

.contact__privacy {
  padding-top: 20px;
  padding-bottom: 30px;
}

.form-checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.contact__button {
  width: 300px;
  height: 70px;
  border-radius: 5px;
}
.contact__button.-active {
  background-color: #0067B7;
  color: #fff;
}

.contact__message {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
  display: none;
}
.contact__message-error {
  color: #f00;
}