@charset "UTF-8";
/* 公開ページ（index.php）専用・最小構成 */

html {
  overflow: auto;
}

body {
  overflow-x: hidden;
  background: #ffffff;
  color: #666464;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.6px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  margin: 0;
  padding: 0;
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-decoration: underline;
}
a:hover {
  opacity: 0.6;
}

.inner {
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1199px) {
  .inner {
    padding: 30px 20px 70px;
  }
}

section {
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}
.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: inherit;
  }
}

/* ヘッダー */
.header {
  height: 85px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
@media screen and (max-width: 1199px) {
  .header {
    height: 60px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.header__logo {
  width: 259px;
}
.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* フッター（下部ブロックのみ） */
.footer__foot {
  background: #4b4f55;
  color: #ffffff;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .footer__foot {
    padding: 18px 0 70px;
  }
}
.footer__foot-block {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer__foot-block {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 769px) {
  .footer__foot-block {
    justify-content: space-between;
  }
  .footer__foot-wrapper a {
    margin-right: 20px;
  }
}
.footer__foot-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__foot-wrapper {
    display: block;
  }
}
.footer__foot-logo {
  margin-top: 8px;
}
@media screen and (max-width: 769px) {
  .footer__foot-logo {
    margin-top: 0;
    margin-bottom: 15px;
  }
}
.footer__foot-logo img {
  width: 100%;
}
.footer__foot .ach {
  width: 100px;
}
@media screen and (max-width: 768px) {
  .footer__foot .ach {
    width: 110px;
    display: block;
  }
}
.footer__foot .acd {
  width: 80px;
}
@media screen and (max-width: 768px) {
  .footer__foot .acd {
    width: 90px;
    display: block;
  }
}
.footer__foot .hdc {
  width: 75px;
}
@media screen and (max-width: 768px) {
  .footer__foot .hdc {
    width: 80px;
    display: block;
  }
}
.footer__foot .asahi {
  width: 280px;
}
@media screen and (max-width: 768px) {
  .footer__foot .asahi {
    width: 240px;
    display: block;
  }
}
.footer__copyright {
  font-size: 10px;
  margin-top: 16px;
}
@media screen and (min-width: 769px) {
  .footer__copyright {
    margin-top: 0;
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 5px;
    margin-bottom: 30px;
  }
}

/* ページトップ */
.page-top {
  bottom: 15px;
  right: 10px;
  background: #e76d74;
  padding: 25px;
  position: fixed;
  cursor: pointer;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .page-top {
    padding: 20px;
    width: 10px;
    height: 10px;
  }
}
.page-top::before {
  content: "";
  position: absolute;
  background: url("../img/arrow-top.svg") no-repeat center center / cover;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.page-top:hover::before {
  transform: translate(-50%, -70%);
}

/* メイン・ごあいさつ */
.section {
  padding: 150px 0 80px;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 50px 0 0;
  }
}
.section__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.section__title-ja {
  font-size: 30px;
  font-weight: 700;
  color: #d80c18;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 1000px) {
  .section__title-ja {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .section__title-ja {
    font-size: 26px;
  }
}
.section__message {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6em;
}
@media screen and (max-width: 768px) {
  .section__message {
    width: 100%;
    text-align: justify;
  }
  .section__message br {
    display: none;
  }
}

.tabContent {
  width: 100%;
  align-items: center;
  padding: 0 60px 70px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .tabContent {
    padding: 70px 0 50px;
  }
}

.hello {
  padding: 20px 160px 0;
}
@media screen and (max-width: 1200px) {
  .hello {
    padding: 100px 100px 0;
  }
}
@media screen and (max-width: 768px) {
  .hello {
    padding: 50px 0 0;
  }
}
.hello .notice-info-wrap {
  margin-bottom: 0.5em;
}
.hello .notice-info {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  line-height: 1.8;
}
.hello table {
  margin-top: 2em;
}
.hello .notice-info th {
  width: 13em;
  padding: 0 1em 0.6em 0;
  vertical-align: top;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}
.hello .notice-info td {
  padding: 0 0 0.6em 0;
  vertical-align: top;
  text-align: left;
  word-break: break-word;
}
.hello .notice-info__arrow {
  display: block;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .hello .notice-info__arrow {
    text-align: left;
    padding-left: 30%;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .hello .notice-info {
    display: block;
    width: 100%;
  }
  .hello .notice-info tbody {
    display: block;
    width: 100%;
  }
  .hello .notice-info tr {
    display: block;
    width: 100%;
    margin-bottom: 1em;
  }
  .hello .notice-info tr:last-child {
    margin-bottom: 0;
  }
  .hello .notice-info th {
    display: block;
    width: 100%;
    padding: 0 0 0.35em 0;
    white-space: normal;
    box-sizing: border-box;
  }
  .hello .notice-info td {
    display: block;
    width: 100%;
    padding: 0 0 0.15em 0;
    box-sizing: border-box;
  }
  .hello .notice-info td.notice-info__cell--url {
    text-align: center;
  }
}

.hello .section__message {
  line-height: 1.8;
  text-align: left;
  margin-bottom: 0.5em;
}
.hello .section__message.section__message--closing {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .hello .section__message {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
  }
  .hello .section__message br {
    display: block;
  }
}
.hello__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6em;
  text-align: right;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .hello__name {
    padding: 0 20px;
    font-size: 16px;
  }
}
