@charset "UTF-8";
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul, ol {
  list-style: none;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1, h2, h3, h4,
button, input, label {
  line-height: inherit;
}

/* 見出しのテキスト折り返しをbalanceに設定 */
/* 画像の扱いを簡単にする */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* inputやbuttonなどのfontは継承 */
input, button,
textarea, select {
  font: inherit;
}

/* rows属性のないtextareasが小さくならないようにする */
textarea:not([rows]) {
  min-height: 10em;
}

table {
  border-collapse: collapse;
}

body,
button,
input,
textarea {
  font-family: "BIZ UDPGothic", sans-serif;
}

::selection {
  background-color: #FFF4DF;
  color: #333333;
}

html,
body {
  position: relative;
  width: 100%;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 120px;
}

body {
  font-size: 1.4rem;
  line-height: 1.6875;
  text-align: justify;
  word-break: break-all;
}

:where(body, button, input, textarea, select) {
  color: #333333;
  font-size: inherit;
  line-height: inherit;
}

label,
select,
input[type=checkbox],
input[type=radio],
button {
  cursor: pointer;
}

a {
  color: #E15100;
}
a:hover {
  text-decoration: none;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 25px;
}

.mb35 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 30px;
}

.mb45 {
  margin-bottom: 35px;
}

.mb50 {
  margin-bottom: 30px;
}

.mb55 {
  margin-bottom: 30px;
}

.mb60 {
  margin-bottom: 30px;
}

.mb65 {
  margin-bottom: 30px;
}

.mb70 {
  margin-bottom: 35px;
}

.mb75 {
  margin-bottom: 35px;
}

.mb80 {
  margin-bottom: 40px;
}

.mb85 {
  margin-bottom: 40px;
}

.mb90 {
  margin-bottom: 45px;
}

.mb95 {
  margin-bottom: 50px;
}

.mb100 {
  margin-bottom: 50px;
}

.mb110 {
  margin-bottom: 55px;
}

.mb120 {
  margin-bottom: 60px;
}

.mb125 {
  margin-bottom: 65px;
}

.mb130 {
  margin-bottom: 60px;
}

.mb140 {
  margin-bottom: 60px;
}

.mb150 {
  margin-bottom: 60px;
}

.mb160 {
  margin-bottom: 70px;
}

.mb170 {
  margin-bottom: 70px;
}

.mb180 {
  margin-bottom: 70px;
}

.mb190 {
  margin-bottom: 70px;
}

.mb200 {
  margin-bottom: 70px;
}

.centerBox {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 25px;
}

.pcBr {
  display: none;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  width: 12px;
  background-color: #fff;
}

html::-webkit-scrollbar-thumb {
  background-color: #E15100;
}
.body {
  margin: 86px 0 0;
}

.header {
  height: 86px;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-bottom: 5px solid #E15100;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: height 0.2s ease-in-out, margin 0.2s ease-in-out;
  gap: 20px;
}

.headerLogo {
  display: block;
  width: 200px;
  transition: width 0.2s ease-in-out;
  position: relative;
  z-index: 200;
}

.headerLogoLink {
  display: block;
}

.main {
  margin: 0 0 70px;
}

.pageTitleWrap {
  height: 180px;
  display: flex;
  align-items: center;
  background-image: url(../images/bg-common.svg);
  background-repeat: no-repeat;
  background-size: auto 70%;
  background-position: 110% center;
  margin: 0 auto;
}

.pageTitleContainer {
  max-width: 1180px;
  width: 100%;
  margin: auto;
  padding: 25px;
}

.pageTitle {
  font-size: 2rem;
  font-weight: bold;
}

.pageTitleLabel {
  color: #E15100;
  display: block;
  font-size: 1.5rem;
  line-height: 1.2;
  width: 100%;
  word-break: break-word;
  text-align: left;
}
.broadcastTitle .pageTitleLabel {
  font-size: 1.2rem;
}

.bread {
  display: flex;
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  margin-top: 20px;
}

.breadItem:not(:last-of-type) {
  display: flex;
  align-items: center;
}
.breadItem:not(:last-of-type)::after {
  content: "";
  width: 7px;
  aspect-ratio: 1/1;
  border-right: 2px solid #E15100;
  border-bottom: 2px solid #E15100;
  margin: 0 20px;
  rotate: -45deg;
}

.breadLink {
  text-decoration: none;
  color: #989898;
  font-size: 1.4rem;
  line-height: 1.821429;
  display: block;
}

.breadText {
  color: #989898;
  font-size: 1.4rem;
  line-height: 1.821429;
  display: block;
}

.sectionTitle {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}
.sectionTitle::after {
  content: "";
  display: block;
  background-image: url(../images/icon-section-title.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 10px;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.other {
  background-color: #FFF4DF;
  padding: 50px 25px 70px;
}

.otherTitle {
  margin-bottom: 50px;
}

.otherList {
  display: grid;
  grid-template-columns: repeat(auto-fit, 320px);
  gap: 20px;
  justify-content: center;
  max-width: 1180px;
  margin: auto;
}

.otherListItem {
  padding-right: 10px;
}

.otherLink {
  background-color: #fff;
  border: 2px solid #E15100;
  border-radius: 10px;
  box-shadow: 5px 5px #E15100;
  color: inherit;
  display: grid;
  align-items: center;
  grid-template-columns: 30px 1fr;
  gap: 15px;
  font-weight: bold;
  text-decoration: none;
  height: 100px;
  padding: 5px 2.6rem;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.otherLink::before {
  content: "";
  display: block;
  background-image: url(../images/icon-arrow-link.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
.otherLink:hover {
  box-shadow: none;
  transform: translate(5px, 5px);
}

.otherLinkText {
  font-size: 2rem;
}

.otherLinkTextLabel {
  display: block;
  font-size: 1.5rem;
}

.contactInfoWrap {
  background-color: #DEBB78;
  padding: 50px 25px 70px;
  position: relative;
}
.contactInfoWrap.indexContactInfo {
  padding: 70px 25px;
}
.contactInfoWrap.indexContactInfo:before {
  content: "";
  display: block;
  background-image: url(../images/icon-vehicle-02.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 180px;
  height: 80px;
  position: absolute;
  top: -10%;
  left: 5%;
  z-index: 1;
}
.contactInfoWrap.indexContactInfo:after {
  content: "";
  display: block;
  background-image: url(../images/icon-corner-02.svg);
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  right: -1px;
  z-index: 1;
}

.contactInfo {
  max-width: 750px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.contactInfoTitle {
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 35px;
}
.contactInfoTitle span {
  display: inline-block;
}

.contactInfoList {
  display: grid;
  gap: 30px 40px;
  max-width: 330px;
  margin: auto;
}

.contactInfoLink {
  background-color: #DEBB78;
  border: 2px solid #fff;
  border-radius: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  height: 60px;
  padding: 5px;
  text-decoration: none;
  position: relative;
  transition: background 0.3s, color 0.3s;
}
.contactInfoLink:hover {
  background-color: #fff;
  color: #DEBB78;
}

.contactInfoTelText {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.contactInfoTelNum {
  font-size: 2.2rem;
}

.contactInfoText {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 10px;
}

.contactInfoLabel {
  background-color: #fff;
  color: #E15100;
  font-size: 1.4rem;
  padding: 2px 5px;
}

.footerBannerWrap {
  border-top: 1px solid #D8D8D8;
  padding: 70px 25px;
}

.footerBanner {
  display: grid;
  gap: 20px 10px;
  max-width: 330px;
  margin: auto;
}

.footerBannerLink {
  display: block;
}

.footer {
  background-color: #F5F5F5;
  padding: 0 25px 25px;
  position: relative;
}

.pagetop {
  position: absolute;
  right: 15px;
  top: -18px;
  width: 40px;
  z-index: 1;
}

.footerMenu {
  border-bottom: 1px solid #C1C1C1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px 0;
  max-width: 1180px;
  margin: auto;
  padding: 30px 0 20px;
}

.footerMenuItem {
  width: 50%;
}

.footerMenuLink {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  padding: 5px 2px;
}

.footerBody {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px 50px;
  padding: 30px 0 60px;
}

.footerLogoImg {
  max-width: 280px;
}

.footerAddressTel {
  color: inherit;
  display: block;
  text-decoration: none;
  margin-top: 5px;
}

.footerAddressTelNum {
  font-size: 2rem;
  font-weight: bold;
  padding-left: 10px;
}

.footerAddressMail {
  color: inherit;
  display: block;
  text-decoration: none;
  margin-top: 5px;
}

.footerAddressMailAddress {
  font-size: 1.7rem;
  font-weight: bold;
  padding-left: 10px;
}

.copyright {
  display: block;
  font-size: 1.3rem;
  text-align: center;
}

@media (min-width: 768px){
  .main {
    margin: 0 0 150px;
  }
  .pageTitleWrap {
    height: 300px;
    background-size: auto 90%;
    background-position: 95% center;
    margin: 0 auto;
  }
  .pageTitle {
    font-size: 4rem;
  }
  .pageTitleLabel {
    width: 100%;
  }
  .broadcastTitle .pageTitleLabel {
    font-size: 1.5rem;
  }
  .bread {
    margin-top: 50px;
  }
  .sectionTitle {
    font-size: 3rem;
  }
  .other {
    padding: 120px 25px;
  }
  .otherLink {
    height: 120px;
  }
  .otherLinkText {
    font-size: 2.4rem;
  }
  .contactInfoWrap {
    padding: 70px 25px 65px;
  }
  .contactInfoWrap.indexContactInfo {
    padding: 140px 25px 100px;
  }
  .contactInfoWrap.indexContactInfo:before {
    width: 375px;
    height: 170px;
    top: -25%;
  }
  .contactInfoTitle {
    font-size: 3rem;
    margin-bottom: 45px;
  }
  .contactInfoList {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .contactInfoLink {
    font-size: 2rem;
  }
  .contactInfoTelNum {
    font-size: 2.8rem;
  }
  .footerBanner {
    grid-template-columns: repeat(3, 1fr);
    max-width: 880px;
  }
  .footerMenu {
    gap: 5px 60px;
  }
  .footerMenuItem {
    width: fit-content;
  }
  .footerBody {
    flex-direction: row;
  }
  .footerLogoImg {
    max-width: 100%;
  }
}

@media (min-width: 960px){
  body {
    font-size: 1.6rem;
  }
  .mb30 {
    margin-bottom: 30px;
  }
  .mb35 {
    margin-bottom: 35px;
  }
  .mb40 {
    margin-bottom: 40px;
  }
  .mb45 {
    margin-bottom: 45px;
  }
  .mb50 {
    margin-bottom: 50px;
  }
  .mb55 {
    margin-bottom: 55px;
  }
  .mb60 {
    margin-bottom: 60px;
  }
  .mb65 {
    margin-bottom: 65px;
  }
  .mb70 {
    margin-bottom: 70px;
  }
  .mb75 {
    margin-bottom: 75px;
  }
  .mb80 {
    margin-bottom: 80px;
  }
  .mb85 {
    margin-bottom: 85px;
  }
  .mb90 {
    margin-bottom: 90px;
  }
  .mb95 {
    margin-bottom: 95px;
  }
  .mb100 {
    margin-bottom: 100px;
  }
  .mb110 {
    margin-bottom: 110px;
  }
  .mb120 {
    margin-bottom: 120px;
  }
  .mb125 {
    margin-bottom: 125px;
  }
  .mb130 {
    margin-bottom: 130px;
  }
  .mb140 {
    margin-bottom: 140px;
  }
  .mb150 {
    margin-bottom: 150px;
  }
  .mb160 {
    margin-bottom: 160px;
  }
  .mb170 {
    margin-bottom: 170px;
  }
  .mb180 {
    margin-bottom: 180px;
  }
  .mb190 {
    margin-bottom: 190px;
  }
  .mb200 {
    margin-bottom: 200px;
  }
  .spBr {
    display: none;
  }
  .pcBr {
    display: inline;
  }
  .body {
    margin: 130px 0 0;
  }
  .header {
    height: 130px;
    padding: 0 55px;
  }
  [data-scroll=true] .header {
    height: 80px;
  }
  .headerLogo {
    width: 340px;
  }
  [data-scroll=true] .headerLogo {
    width: 200px;
  }
  .headerNav {
    align-self: stretch;
  }
  .sectionTitle {
    font-size: 4rem;
  }
  .otherList {
    grid-template-columns: repeat(auto-fit, 380px);
  }
  .contactInfoWrap.indexContactInfo:after {
    width: 200px;
    height: 200px;
  }
  .contactInfoTitle {
    font-size: 3.6rem;
  }
  .pagetop {
    width: 60px;
    right: 25px;
    top: -35px;
  }
}

@media print{
  body {
    width: 960px;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=common.css.map*/