@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;
  word-break: break-word;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
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;
}

table {
  border-collapse: collapse;
}

body,
button,
input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

::selection {
  background-color: #FFC868;
  color: inherit;
}

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

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

body {
  font-size: 1.4rem;
  line-height: 1.6875;
}

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

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

a {
  color: #003A73;
}
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: 1082px;
  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: #003A73;
}
.header {
  width: 100%;
  position: fixed;
  z-index: 999;
}
.header:after {
  content: "";
  display: block;
  background-color: #003A73;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  position: fixed;
  right: -30px;
  top: -30px;
  z-index: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 0.6s;
}
.header.-active:after {
  transform: translate3d(0, 0, 0) scale(40);
}

.headerToggle {
  border: none;
  background-color: transparent;
  display: block;
  width: 60px;
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
.headerToggle:after {
  content: "";
  display: block;
  background-color: #003A73;
  border: 1px solid #003A73;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  opacity: 1;
  position: absolute;
  bottom: -15px;
  left: -15px;
  z-index: 0;
}

.headerToggleLine {
  background-color: #fff;
  width: 26px;
  height: 2px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  transition: 0.3s;
}
.headerToggleLine:nth-child(1) {
  top: -18px;
}
.headerToggleLine:nth-child(3) {
  bottom: -18px;
}
.-active .headerToggleLine:nth-child(1) {
  top: 0;
  transform: rotate(45deg);
}
.-active .headerToggleLine:nth-child(2) {
  display: none;
}
.-active .headerToggleLine:nth-child(3) {
  bottom: 0;
  transform: rotate(-45deg);
}

.globalNavSP {
  width: 100%;
  height: 100vh;
  padding: 0 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity 0.3s 0.6s ease-in;
}
.-active .globalNavSP {
  visibility: visible;
  opacity: 1;
  z-index: 2;
  transform: none;
}

.globalNavSPList {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.globalNavSPListItem {
  width: 100%;
}

.globalNavSPLink {
  color: #fff;
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  padding: 1rem;
  position: relative;
}
.globalNavSPLink:before {
  content: "";
  display: block;
  background-color: #fff;
  width: 10px;
  height: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}
.globalNavSPLink:hover:before {
  opacity: 1;
}

.globalNavSPcontactList {
  max-width: 300px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}
.globalNavSPcontactList .contactMenuLink.mail:hover {
  border: 2px solid #fff;
}

.pcBgOuter {
  position: relative;
  z-index: 0;
}

.contents {
  padding-bottom: 50px;
}

.mainWrapper {
  background-color: #fff;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.pcSideWrapper {
  display: none;
}

.pcSideContainer {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0 20px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 90vh;
  margin-left: 500px;
  padding: 30px;
}

.scrollContainer {
  overflow-y: auto;
}

.asideLogo {
  max-width: 260px;
  margin: 0 auto 40px;
}

.asideLogoLink {
  display: block;
  opacity: 1;
  transition: opacity 0.3s;
}
.asideLogoLink:hover {
  opacity: 0.7;
}

.asideColumnBox {
  display: grid;
  gap: 40px;
  margin-left: 10px;
}

.asideMenuList {
  display: grid;
  gap: 20px;
  margin-left: -10px;
}

.asideMenuLink {
  color: inherit;
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: color 0.3s;
}
.asideMenuLink:before {
  content: "";
  display: block;
  background-color: #003A73;
  width: 10px;
  height: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}
.asideMenuLink:hover {
  color: #003A73;
}
.asideMenuLink:hover:before {
  opacity: 1;
}

.roundedFont {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  border: 0;
}

.maxContainer {
  padding-left: 15px;
  padding-right: 15px;
}

.logo {
  padding: 20px 0 15px;
}

.logoLink {
  display: block;
  max-width: 150px;
  opacity: 1;
  transition: opacity 0.3s;
}
.logoLink:hover {
  opacity: 0.7;
}

.logoLinkImg {
  width: 100%;
}

.sectionTitle {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
}
.sectionTitle span {
  background: linear-gradient(transparent 60%, #FFC868 0%);
  padding: 0 8px;
}

.pageTitle {
  background-image: url(../images/bg-normal.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 160px;
  margin-bottom: 50px;
}
.pageTitle.pageAboutTitle {
  background-image: url(../images/bg-about.jpg);
}
.pageTitle.pageInfoTitle {
  background-image: url(../images/bg-info.jpg);
}
.pageTitle.pageFlowTitle {
  background-image: url(../images/bg-flow.jpg);
}
.pageTitle.pageMenuTitle {
  background-image: url(../images/bg-menu.jpg);
}
.pageTitle.pageQaTitle {
  background-image: url(../images/bg-qa.jpg);
}
.pageTitle.pageContactTitle {
  background-image: url(../images/bg-contact.jpg);
}
.pageTitle.pagePrivacyPolicyTitle {
  background-image: url(../images/bg-privacy-policy.jpg);
}

.pageTitleText {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.pageButton {
  background-color: #fff;
  border: 2px solid #003A73;
  border-radius: 30px;
  color: #003A73;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding: 0.5em;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.pageButton:hover {
  background-color: #003A73;
  color: #fff;
}

.contactMenuList {
  display: grid;
  gap: 15px;
}
.asideMenuList + .contactMenuList {
  margin-top: 30px;
}

.contactMenuLink {
  background-color: #fff;
  border: 2px solid #003A73;
  border-radius: 50px;
  color: #003A73;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  line-height: 1.4;
  text-align: center;
  padding: 20px;
  text-decoration: none;
  position: relative;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.contactMenuLink.mail {
  border: 2px solid #06C755;
  color: #06C755;
  font-size: 1.6rem;
  font-weight: 500;
}
.contactMenuLink.mail:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-image: url(../images/icon-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.contactMenuLink.line {
  background-color: #06C755;
  border: 1px solid #06C755;
  color: #fff;
}
.contactMenuLink.instagram {
  background-color: #F5559A;
  border: 1px solid #F5559A;
  color: #fff;
}
.contactMenuLink:hover.mail {
  box-shadow: 0 0 8px gray;
}
.contactMenuLink:hover.line {
  background-color: #fff;
  color: #06C755;
}
.contactMenuLink:hover.instagram {
  background-color: #fff;
  color: #F5559A;
}

.addressItem {
  border-bottom: 1px dashed #303030;
  display: grid;
  gap: 0 15px;
  grid-template-columns: 80px 1fr;
  font-size: 1.6rem;
  padding: 15px 0;
}
.addressItem:first-child {
  padding-top: 0;
}
.addressItem:last-child {
  border: none;
}

.addressTitle {
  color: #003A73;
  font-weight: 500;
}

.addressText {
  font-weight: 500;
}
.addressText span {
  display: inline-block;
}
.addressText span:nth-child(n+2) {
  margin-top: 5px;
}
.addressText small {
  font-size: 1.4rem;
  font-weight: 400;
}

.fixContactMenu {
  background-color: #fff;
  box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.15);
  width: 100%;
  padding: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.fixContactMenuList {
  display: grid;
  align-items: center;
  gap: 11px;
  grid-template-columns: repeat(2, 1fr);
}

.fixContactMenuListItem {
  position: relative;
}
.fixContactMenuListItem:first-child:after {
  content: "";
  display: block;
  background-color: #003A73;
  width: 1px;
  height: 90%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -7px;
}

.fixContactMenuLink {
  background-color: #fff;
  color: #003A73;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 3vw;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  padding: 1em 0.5em;
  text-decoration: none;
  position: relative;
}
.fixContactMenuLink.mail {
  color: #06C755;
  gap: 20px;
  padding: 10px 0.5em 10px 10px;
}
.fixContactMenuLink.mail:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-image: url(../images/icon-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.fixContactMenuLink.tel:before {
  content: "";
  display: block;
  width: 20px;
  height: 40px;
  min-width: 20px;
  background-image: url(../images/icon-tel-01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.no-post {
  font-size: 1.6rem;
  padding: 20px 0;
}

.footer {
  background-color: #003A73;
  margin-top: 75px;
  padding: 10px 15px 30px;
  position: relative;
  z-index: 0;
}
.footer.fixMenuFooter {
  padding: 10px 15px 100px;
}
.footer:before {
  content: "";
  display: block;
  background-image: url(../images/bg-footer.png);
  background-size: 100% 100%;
  background-position: top center;
  background-repeat: no-repeat;
  width: 100%;
  height: 75px;
  margin: 0 auto;
  position: absolute;
  top: -74px;
  left: 0;
  right: 0;
  z-index: 1;
}

.footerContents {
  position: relative;
  z-index: 2;
}

.footerLogo {
  margin-bottom: 30px;
}

.footerAddress {
  color: #fff;
  font-size: 1.6rem;
}

.footerTel {
  color: #fff;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
  font-size: 1.6rem;
  margin-top: 5px;
}

.footerTelLink {
  color: #fff;
  text-decoration: none;
}
.footerTelLink:hover {
  text-decoration: underline;
}

.footerNavList {
  margin: 50px 0 40px;
}

.footerNavLink {
  color: #fff;
  font-size: 1.6rem;
}
.footerNavLink:hover {
  text-decoration: none;
}

.pagetop {
  border: none;
  background-color: transparent;
  background-color: #fff;
  border: 4px solid #003A73;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 90px;
  height: 90px;
  position: absolute;
  top: -50px;
  right: 3%;
  z-index: 99;
  transition: background 0.3s;
}
.pagetop:hover {
  background-color: #003A73;
}
.pagetop:hover .pagetopDeco {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
.pagetop:hover .pagetopText {
  color: #fff;
}

.pagetopDeco {
  content: "";
  display: block;
  border-top: solid 2px #003A73;
  border-right: solid 2px #003A73;
  width: 12px;
  height: 12px;
  margin: 0 auto 2px;
  transform: rotate(-45deg);
  transition: border 0.3s;
}

.pagetopText {
  color: #003A73;
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  transition: color 0.3s;
}

.copyright {
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
}

@media (min-width: 550px){
  .globalNavSP {
    padding: 0 30px;
  }
  .contents {
    padding-bottom: 90px;
  }
  .maxContainer {
    padding-left: 30px;
    padding-right: 30px;
  }
  .logoLink {
    max-width: 200px;
  }
  .sectionTitle {
    margin-bottom: 60px;
  }
  .fixContactMenuLink {
    font-size: 1.6rem;
  }
  .footer {
    padding: 10px 30px 30px;
  }
  .footer.fixMenuFooter {
    padding: 10px 30px 100px;
  }
  .pagetopText {
    font-size: 1.4rem;
  }
}

@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;
  }
  .header {
    display: none;
  }
  .pcBgOuter:after {
    content: "";
    display: block;
    background-image: url(../images/bg-main.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
  }
  .contentsOuter {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
  .mainWrapper {
    border-left: 8px solid #003A73;
    border-right: 8px solid #003A73;
    width: 450px;
    margin-left: 50px;
  }
  .pcSideWrapper {
    display: flex;
    align-items: center;
    max-width: 1440px;
    height: 100vh;
    margin: auto;
    padding-right: 20px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  .maxContainer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .logoLink {
    max-width: 150px;
  }
  .sectionTitle {
    margin-bottom: 30px;
  }
  .contactMenuLink {
    gap: 15px;
    padding: 15px;
  }
  .contactMenuLink.mail:before {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
  .addressText small {
    font-size: 1.6rem;
  }
  .fixContactMenu {
    display: none;
  }
  .footer.fixMenuFooter {
    padding: 10px 30px 30px;
  }
}

@media (min-width: 1200px){
  .mainWrapper {
    width: 550px;
    margin-left: 50px;
  }
  .pcSideContainer {
    margin-left: 600px;
    padding: 10px 30px;
  }
  .asideLogo {
    margin: 0 0 60px;
  }
  .asideColumnBox {
    gap: 20px 30px;
    grid-template-columns: 40% 1fr;
  }
  .contactMenuLink.mail {
    font-size: 1.2vw;
  }
}

@media (min-width: 1300px){
  .contactMenuLink.mail {
    font-size: 1.6rem;
  }
}

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

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