@charset "UTF-8";
/* ---------------
common
--------------- */
a {
  transition: 0.3s all ease-out;
}

.link-btn {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 320px;
  margin: 0 auto;
  padding: 1rem 6.4rem;
  border-radius: 10px;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.link-btn:hover::after {
  right: 1rem;
}

.link-btn::after {
  content: "\f054";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  font-size: 1.6rem;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  transition: all 0.4s ease-in-out;
  transform: translateY(-50%);
}

.link-btn.btn-primary {
  border: 2px solid #0fa4a1;
  background-color: #0fa4a1;
  color: #fff;
}

.link-btn.btn-primary:hover {
  opacity: 0.8;
  filter: opacity(80%);
}

.pc-only {
  display: block;
}

@media screen and (max-width: 781px) {
  .pc-only {
    display: none;
  }
}
.sp-only {
  display: none;
}

@media screen and (max-width: 781px) {
  .sp-only {
    display: block;
  }
}
#header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}

.site-footer {
  position: relative;
  background-color: #fff;
}

.site-footer__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 6rem 0 4rem;
}

@media screen and (max-width: 1024px) {
  .site-footer__inner {
    flex-wrap: wrap;
    padding: 4rem 2rem 2.4rem;
  }
}
@media screen and (max-width: 781px) {
  .site-footer__inner {
    max-width: 380px;
  }
}
.site-footer-logo {
  width: 120px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 1024px) {
  .site-footer-logo {
    margin: 0 auto 1.6rem;
  }
}
.site-footer-logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.site-footer-info {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: auto;
  gap: 1.6rem;
  width: calc(100% - 120px - 3.2rem);
}

@media screen and (max-width: 781px) {
  .site-footer-info {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.site-footer-address {
  grid-column: 1/2;
  grid-row: 1/2;
}

.site-footer-address dd {
  color: #434343;
  font-size: 1.6rem;
  font-weight: 400;
}

.site-footer-address dd a {
  color: #434343;
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.site-footer-address dd a:hover {
  text-decoration: underline;
}

.site-footer-nav {
  grid-column: 2/3;
  grid-row: 1/2;
}

@media screen and (max-width: 781px) {
  .site-footer-nav {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.site-footer-nav-list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 0.8rem;
  width: 100%;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 1024px) {
  .site-footer-nav-list {
    grid-auto-flow: column;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 1.6rem 0.8rem;
  }
}
.site-footer-nav li {
  line-height: 1.4;
  list-style: none;
}

.site-footer-nav a {
  color: #434343;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.site-footer-nav a:hover {
  color: #0fa4a1;
}

.site-footer-subnav {
  grid-column: 1/3;
  grid-row: 2/3;
  width: 100%;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 781px) {
  .site-footer-subnav {
    grid-column: 1/2;
    grid-row: 3/4;
    text-align: center;
  }
}
.site-footer-subnav li {
  display: inline-block;
  margin-left: 1.6rem;
  list-style: none;
}

.site-footer-subnav li:first-of-type {
  margin-left: 0;
}

.site-footer-subnav li a {
  color: #676767;
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: none;
  vertical-align: top;
  transition: all 0.5s ease-in-out;
}

.site-footer-subnav li a:hover {
  color: #0fa4a1;
}

.site-footer .copyright {
  grid-column: 2/3;
  grid-row: 2/3;
}

@media screen and (max-width: 781px) {
  .site-footer .copyright {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
.site-footer .copyright p {
  margin: 0;
  color: #676767;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: right;
  line-height: 1.8;
}

@media screen and (max-width: 781px) {
  .site-footer .copyright p {
    text-align: center;
  }
}
.w-100 {
  width: 500px;
  max-width: 100%;
}

#header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}

.sp-footer-nav {
  display: none;
}

@media screen and (max-width: 781px) {
  .sp-footer-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000;
  }
  .sp-footer-nav ul {
    display: flex;
    gap: 0;
    padding: 0;
    margin: 0;
  }
  .sp-footer-nav ul li {
    width: 50%;
    padding: 0;
    margin: 0;
  }
  .sp-footer-nav ul a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    line-height: 1.2em;
    padding: 0.5em 0;
  }
  .sp-footer-nav-tel a {
    background-color: #9fc7ec;
  }
  .sp-footer-nav-contact a {
    background-color: #ff6b3d;
  }
}
@media screen and (max-width: 781px) {
  .site-footer {
    padding-bottom: 60px;
  }
  .f-main-visual .f-cta {
    bottom: 6.2rem;
  }
}
/* action / banner styles */
.comp-action {
  scroll-margin-top: 130px; /* å›ºå®šãEãƒEƒ€ãƒ¼ã®é«˜ã•åˆE‚’ç¢ºä¿E*/
  position: relative;
  /* background-color: $bgMain; */
  background-image: url("../images/common/bg_action_01.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .comp-action {
    background-position: left center;
  }
}
.comp-action__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 16rem 0 12.8rem; /* ä¸Šéƒ¨ã®ä½™ç™½ã‚E12.8rem ã‹ã‚‰ 16rem ã«å¢—ã‚„ã—ã¦é‡ãªã‚Šã‚’å›žé¿ */
}

@media screen and (max-width: 1024px) {
  .comp-action__inner {
    padding: 9.6rem 2rem;
  }
}
.comp-action__inner h2 {
  margin: 0;
  padding: 0;
  border-bottom: none;
  color: #434343;
  font-size: 2.4rem;
  font-weight: 700;
}

@media screen and (max-width: 781px) {
  .comp-action__inner h2 {
    font-size: 2.1rem;
  }
}
.comp-action__wrap {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 2.4rem 4rem;
  width: 100%;
  margin-top: 6.4rem;
}

@media screen and (max-width: 781px) {
  .comp-action__wrap {
    flex-wrap: wrap;
    margin-top: 4rem;
  }
}
.comp-action-terms {
  width: calc(56% - 2rem);
  padding: 3.6rem 2.4rem;
  border: 1px solid #999;
  border-radius: 10px;
  background-color: #fff;
}

@media screen and (max-width: 781px) {
  .comp-action-terms {
    width: 100%;
    padding: 2.4rem 1.6rem;
  }
}
.comp-action-terms h3 {
  margin: 0;
  padding: 0;
  border-bottom: none;
  color: #434343;
  font-size: 2.4rem;
  font-weight: 500;
}

@media screen and (max-width: 781px) {
  .comp-action-terms h3 {
    font-size: 1.8rem;
  }
}
.comp-action-link {
  width: calc(40% - 2rem);
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 781px) {
  .comp-action-link {
    width: 100%;
  }
}
.comp-action-link__item {
  width: 100%;
  margin-top: 2.4rem;
}

@media screen and (max-width: 781px) {
  .comp-action-link__item {
    margin-top: 1.6rem;
  }
}
.comp-action-link__item:first-of-type {
  margin-top: 0;
}

.comp-action-link__item a {
  display: block;
  position: relative;
  width: 100%;
  padding: 1.6rem 2.4rem;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.16);
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 781px) {
  .comp-action-link__item a {
    padding: 1.6rem;
  }
}
.comp-action-link__item a:hover::after {
  right: 1rem;
}

.comp-action-link__item a:hover h3 {
  color: #0fa4a1;
}

.comp-action-link__item a::after {
  content: "\f054";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  color: #0fa4a1;
  font-size: 1.6rem;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  transition: all 0.4s ease-in-out;
  transform: translateY(-50%);
}

.comp-action-link__item h3 {
  margin: 0;
  padding: 0;
  border-bottom: none;
  color: #434343;
  font-size: 2rem;
  font-weight: 700;
  transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 781px) {
  .comp-action-link__item h3 {
    font-size: 1.8rem;
  }
}
.comp-action-link__item p {
  margin-top: 0.4rem;
  color: #434343;
  font-size: 1.4rem;
  font-weight: 400;
}

/* ---------------
parts
--------------- */
/* kakomi
--------------------------------------------- */
.kakomi {
  margin: 2.4rem auto 0;
  padding: 2.4rem 1.6rem;
  border: 1px solid #0fa4a1;
  background-color: #f9f9f9;
}

@media screen and (max-width: 781px) {
  .kakomi {
    margin: 1.6rem auto 0;
    padding: 1.6rem;
  }
}
.kakomi p:first-of-type {
  margin-top: 0 !important;
}

.kakomi ul:first-of-type {
  margin-top: 0 !important;
}

.kakomi_with_title {
  position: relative;
}

.kakomi_with_title .title {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #565656;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 781px) {
  .kakomi_with_title .title {
    margin-bottom: 1rem;
    font-size: 18px;
  }
}
.kakomi_with_title .title i {
  margin-right: 6px;
  color: #ff7e56;
}

/* related
--------------------------------------------- */
.related {
  position: relative;
  margin: 2.4rem 0 0;
  padding: 2.4rem;
  border: 1px solid #565656;
}

@media screen and (max-width: 781px) {
  .related {
    margin-bottom: 1.6rem;
    padding: 1.6rem;
  }
}
.related .title {
  margin-bottom: 0.8rem;
  color: #565656;
  font-size: 21px;
  font-weight: 500;
}

@media screen and (max-width: 781px) {
  .related .title {
    font-size: 18px;
  }
}
.related .title i {
  margin-right: 6px;
  color: #ff7e56;
}

.related .related_title {
  margin-bottom: 0.8rem;
  color: #565656;
  font-size: 21px;
  font-weight: 500;
}

@media screen and (max-width: 781px) {
  .related .related_title {
    font-size: 18px;
  }
}
.related .related_title i {
  margin-right: 6px;
  color: #ff7e56;
}

.related p {
  position: relative;
  margin-bottom: 1rem;
}

.related p:last-child {
  margin-bottom: 0 !important;
}

.related ul {
  margin: 0 !important;
  padding: 0 !important;
}

.related ul li {
  margin: 0 !important;
  padding: 1.6rem 0;
  border-top: 1px solid #d3d3d3;
  list-style-image: none !important;
  list-style-type: none !important;
}

.related ul li:first-child {
  border-top: none;
}

.related ul li::before, .related ul li::after {
  content: "";
  display: none;
  width: auto;
  height: auto;
  background-color: transparent;
}

.related ul li a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.8rem 1.6rem;
  text-decoration: none !important;
}

@media screen and (max-width: 600px) {
  .related ul li a {
    flex-wrap: wrap;
  }
}
.related ul li a .thumbnail {
  width: 128px;
  margin: 0 !important;
}

@media screen and (max-width: 600px) {
  .related ul li a .thumbnail {
    width: 100%;
  }
}
.related ul li a .thumbnail img {
  margin: 0 !important;
}

.related ul li a .post_title {
  width: calc(100% - 144px);
  margin: 0 !important;
  color: #565656;
}

@media screen and (max-width: 600px) {
  .related ul li a .post_title {
    width: 100%;
  }
}
/* cv btn
--------------------------------------------- */
.cvbtn {
  display: block;
  position: relative;
  width: fit-content;
  min-width: 280px;
  max-width: none;
  margin: 2.4rem 0;
  padding: 1.6rem 40px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out;
}

.cvbtn:hover {
  opacity: 1 !important;
  filter: opacity(100%) !important;
}

.cvbtn.cvbtn_1 {
  background-color: #ff7e56;
  color: #fff;
  text-align: center;
}

.cvbtn.cvbtn_1:hover {
  background-color: #FF4D16;
}

.cvbtn.cvbtn_2 {
  background: #0fa4a1;
  color: #fff;
}

.cvbtn.cvbtn_2:hover {
  background-color: #40BDBA;
}

.cvbtn.cvbtn_2:hover::after {
  color: #fff;
}

.cvbtn.cvbtn_2::after {
  content: "\f054";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1rem;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.txtlink {
  position: relative;
  color: #0fa4a1;
  text-decoration: underline;
}

.txtlink::before {
  content: "\f0c1";
  display: inline-block;
  margin-right: 0.8rem;
  color: #0fa4a1;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

/* table wrap
--------------------------------------------- */
.table-wrap {
  overflow-x: auto;
}

.table-wrap table {
  width: 100%;
  overflow-x: scroll;
  white-space: nowrap;
}

/* table of contents
--------------------------------------------- */
#toc_container {
  width: 100%;
  margin-top: 40px;
  padding: 3.2rem 2.4rem;
  border: none;
  border-top: 2px solid #565656;
  background-color: #f9f9f9 !important;
}

@media screen and (max-width: 781px) {
  #toc_container {
    margin-top: 2.4rem;
    padding: 2.4rem 1.6rem;
  }
}
#toc_container .toc_title {
  color: #565656;
  font-size: 21px;
  font-weight: 700;
  text-align: left !important;
}

#toc_container .toc_title span {
  color: #565656;
  font-size: 14px;
  font-weight: 400;
}

#toc_container .toc_list {
  margin: 0;
  padding: 0;
}

#toc_container .toc_list > li {
  margin: 0;
  list-style-type: none;
}

#toc_container .toc_list > li > a {
  display: block;
  padding: 0.8rem 0;
  border-bottom: 1px solid #d3d3d3;
  color: #565656;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

#toc_container .toc_list ul {
  margin: 0.8rem 0 0 0;
  padding-left: 1.6rem;
}

#toc_container .toc_list ul li a {
  color: #565656;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

#toc_container .toc_list ul ul {
  margin: 0;
  padding: 0;
}

/* ---------------
page
--------------- */
body.column #wrap .topicpath {
  padding-top: 150px;
}

body.column #wrap .pageTitle {
  margin-bottom: 4.8rem;
  padding: 0;
  color: #0fa4a1;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: normal;
}

@media screen and (max-width: 781px) {
  body.column #wrap .pageTitle {
    font-size: 24px;
  }
}
.archive5 {
  gap: 40px 24px;
}

.archive5 .column-card {
  flex: 0 1 calc(50% - 12px);
}

.archive5 .column-card a {
  font-family: "Noto Sans JP", "ãƒ¡ã‚¤ãƒªã‚ª", Meiryo, "ãƒ’ãƒ©ã‚®ãƒŽè§’ã‚´Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, Osaka, "E­E³ E°ã‚´ã‚·ãƒE‚¯", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: none;
}

.archive5 .column-card a:hover {
  background-color: transparent;
}

.archive5 .column-card a p {
  margin: 0;
}

.archive5 .column-card_img img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: 328/192;
}

.archive5 .column-card_info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.archive5 .column-card_cat {
  outline: solid 1px #0fa4a1;
  outline-offset: -1px;
  color: #0fa4a1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 8px 16px;
}

.archive5 .column-card_date {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.archive5 .column-card_title,
.archive5 .column-card h3 {
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.archive5 .column-card_title::after,
.archive5 .column-card h3::after {
  display: none;
}

.column-side {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  font-family: "Noto Sans JP", "ãƒ¡ã‚¤ãƒªã‚ª", Meiryo, "ãƒ’ãƒ©ã‚®ãƒŽè§’ã‚´Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, Osaka, "E­E³ E°ã‚´ã‚·ãƒE‚¯", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
}

.column-side .wp-block-search__label {
  display: none;
}

.column-side .wp-block-search__inside-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.column-side .wp-block-search__input {
  color: #565656;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  padding: 8px 24px;
  max-width: calc(100% - 38px);
}

.column-side .wp-block-search__button {
  margin-right: 14px;
}

.column-side .wp-block-search__button:hover {
  transition: 0.3s all ease-out;
  opacity: 0.6;
}

.column-side h2 {
  margin: 0 0 24px;
  color: #333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  padding: 0 0 7px;
  position: relative;
  border-bottom: solid 2px #d3d3d3;
}

.column-side h2::after {
  content: "";
  display: block;
  height: 2px;
  width: 100px;
  background-color: #0fa4a1;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.column-side .wp-block-categories-list {
  margin-left: 0;
  padding-left: 0;
}

.column-side .wp-block-categories-list a {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: #565656;
}

.column-side .wp-block-categories-list a:hover {
  opacity: 0.6;
}

.column-side .wpp-list {
  margin-left: 0;
  padding-left: 0;
}

.column-side .wpp-list li {
  display: flex;
  gap: 8px;
  margin: 0;
}

.column-side .wpp-list li + li {
  margin-top: 16px;
}

.column-side .wpp-list li a:not(.wpp-post-title) {
  width: 90px;
}

.column-side .wpp-list li a:not(.wpp-post-title) img {
  aspect-ratio: 90/52;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.column-side .wpp-list li a.wpp-post-title {
  font-size: 14px;
  color: #565656;
  line-height: 1.6;
  font-weight: 500;
  text-decoration: none;
  max-width: calc(100% - 98px);
}

.entry-title {
  font-family: "Noto Sans JP", "ãƒ¡ã‚¤ãƒªã‚ª", Meiryo, "ãƒ’ãƒ©ã‚®ãƒŽè§’ã‚´Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, Osaka, "E­E³ E°ã‚´ã‚·ãƒE‚¯", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: normal;
  color: #565656;
}

@media screen and (max-width: 781px) {
  .entry-title {
    font-size: 24px;
  }
}
.entry-meta {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 4rem 0 0;
}

@media screen and (max-width: 781px) {
  .entry-meta {
    margin: 2.4rem 0 0;
  }
}
.entry-meta-cat-label {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap: 8px;
}

.entry-meta-cat-label .cat-name {
  color: #0fa4a1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  padding: 8px 16px;
  outline: solid 1px #0fa4a1;
  outline-offset: -1px;
}

.entry-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.entry-content {
  font-family: "Noto Sans JP", "ãƒ¡ã‚¤ãƒªã‚ª", Meiryo, "ãƒ’ãƒ©ã‚®ãƒŽè§’ã‚´Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, Osaka, "E­E³ E°ã‚´ã‚·ãƒE‚¯", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  color: #565656;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.entry-content p {
  color: #333;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 781px) {
  .entry-content p {
    font-size: 16px;
    line-height: 1.8;
  }
}
.entry-content p + p {
  margin-top: 2.4rem;
}

@media screen and (max-width: 781px) {
  .entry-content p + p {
    margin-top: 1.6rem;
  }
}
.entry-content h2 {
  position: relative;
  padding: 0 1rem 1.6rem 1rem;
  margin: 6.4rem 0 2.4rem;
  border-bottom: solid 2px #f9f9f9;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

.entry-content h2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 32%;
  height: 2px;
  background-color: #0fa4a1;
}

.entry-content h3 {
  margin: 4.8rem 0 2.4rem;
  padding: 1.6rem 2.4rem;
  border: none;
  background-color: #f1f1f1;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}

.entry-content h4 {
  margin: 4.8rem 0 2.4rem;
  padding: 0.8rem 0 0.8rem 1.2rem;
  border-left: solid 5px #0fa4a1;
  font-size: 21px;
  font-weight: 500;
  line-height: normal;
}

.entry-content a {
  text-decoration: underline;
}

.entry-content a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}

.entry-content img {
  margin-top: 2.4rem;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 781px) {
  .entry-content img {
    margin-top: 1.6rem;
  }
}
.entry-content ul {
  margin-top: 2.4rem;
  font-size: 18px;
}

@media screen and (max-width: 781px) {
  .entry-content ul {
    margin-top: 1.6rem;
    font-size: 16px;
  }
}
.entry-content ul li {
  margin: 0.8rem 0.8rem 0 0.8rem;
  color: #565656;
  list-style-type: disc;
}

.entry-content ul li::marker {
  width: 12px;
  height: 12px;
  color: #0fa4a1;
}

.entry-content ol {
  margin-top: 2.4rem;
  font-size: 18px;
}

@media screen and (max-width: 781px) {
  .entry-content ol {
    margin-top: 1.6rem;
    font-size: 16px;
  }
}
.entry-content ol li {
  position: relative;
  margin: 0.8rem 0.8rem 0 0.8rem;
  color: #434343;
  list-style-type: decimal;
}

.entry-content ol li::marker {
  width: 12px;
  height: 12px;
  color: #0fa4a1;
}

.entry-content table {
  width: 100%;
  margin: 2.4rem auto 0;
  border-collapse: collapse;
}

@media screen and (max-width: 781px) {
  .entry-content table {
    margin-top: 1.6rem;
  }
}
.entry-content table thead {
  border: none;
}

.entry-content table thead th {
  padding: 0.8rem 1.6rem;
  border: 1px solid #d3d3d3;
  border-right: 1px solid #fff;
  background-color: #0fa4a1;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 781px) {
  .entry-content table thead th {
    padding: 0.8rem;
    font-size: 16px;
  }
}
.entry-content table thead th:last-child {
  border-right: none;
}

.entry-content table tbody th {
  padding: 0.8rem 1.6rem;
  border: 1px solid #d3d3d3;
  background-color: #f1f1f1;
  color: #565656;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}

@media screen and (max-width: 781px) {
  .entry-content table tbody th {
    padding: 0.8rem;
    font-size: 16px;
  }
}
.entry-content table tbody td {
  padding: 0.8rem 1.6rem;
  border: 1px solid #d3d3d3;
  color: #565656;
  font-size: 18px;
  font-weight: 400;
}

@media screen and (max-width: 781px) {
  .entry-content table tbody td {
    padding: 0.8rem;
    font-size: 16px;
  }
}
.entry-content blockquote {
  width: 100%;
  margin-top: 2.4rem;
  padding: 2.4rem;
  background-color: #f9f9f9;
}

@media screen and (max-width: 781px) {
  .entry-content blockquote {
    margin-top: 1.6rem;
    padding: 2.4 1.6rem;
  }
}
.entry-content blockquote::before {
  font-size: 1.6rem !important;
}

.entry-content blockquote cite {
  color: #565656;
}

/* front-page specific styles */
.front-page .wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .front-page .wrap {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.front-page .f-heading .hl2 {
  position: relative;
  margin: 0;
  padding: 4rem 0 0 0;
  border-bottom: none;
  color: #0fa4a1;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}

.front-page .f-heading .hl2::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 58px;
  height: 31px;
  background-image: url("../images/common/icon_light.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateX(-50%);
}

.front-page .f-heading .hl3 {
  position: relative;
  margin: 0;
  padding: 0 0 1.6rem 0;
  border-bottom: none;
  color: #333;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}

.front-page .f-heading .hl3::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  height: 3px;
  background-color: #0fa4a1;
  transform: translateX(-50%);
}

.front-page .f-heading p {
  color: #565656;
  font-size: 1.6rem;
  text-align: center;
}

/* main-visual --------------------------------------------- */
.f-main-visual {
  position: relative;
  width: 100vw;
  padding-top: 12.8rem;
  padding-bottom: 6.4%;
}

@media screen and (max-width: 781px) {
  .f-main-visual {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}
.f-main-visual__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  aspect-ratio: 2/1;
}

@media screen and (max-width: 781px) {
  .f-main-visual__inner {
    align-items: flex-end;
    padding: 0 0.8rem;
    aspect-ratio: 8/7;
  }
}
.f-main-visual__inner h1 {
  display: block;
  position: relative;
  z-index: 3;
  width: 100%;
  color: #d3d3d3;
  font-size: 5.6rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0;
  mix-blend-mode: exclusion;
}

@media screen and (max-width: 781px) {
  .f-main-visual__inner h1 {
    color: #fff;
    font-size: 3.6rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 600px) {
  .f-main-visual__inner h1 {
    font-size: 7.2vw;
  }
}
.f-main-visual__inner p {
  display: block;
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: 2.4rem;
  padding-left: 4.8rem;
  color: #d3d3d3;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: left;
  mix-blend-mode: exclusion;
}

@media screen and (max-width: 781px) {
  .f-main-visual__inner p {
    margin-top: 1.6rem;
    padding-right: 2.4rem;
    padding-left: 2.4rem;
    color: #fff;
    font-size: 1.6rem;
  }
}
.f-main-visual__slide {
  position: absolute;
  top: 50%;
  left: 12.5%;
  z-index: 0;
  width: 87.5%;
  height: 100%;
  padding-top: 12.8rem;
  transform: translateY(-50%);
}

@media screen and (max-width: 781px) {
  .f-main-visual__slide {
    left: 5%;
    width: 95%;
    padding-top: 5rem;
  }
}
.f-main-visual__slide .slick-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.f-main-visual__slide .slick-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.f-main-visual .f-cta {
  position: fixed;
  right: 3.6%;
  bottom: 2.4rem;
  z-index: 99;
  width: 144px;
  height: 144px;
}

@media screen and (max-width: 781px) {
  .f-main-visual .f-cta {
    width: 96px;
    height: 96px;
  }
}
.f-main-visual .f-cta__btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px;
  border-radius: 50%;
  background-color: #0fa4a1;
}

.f-main-visual .f-cta__btn:hover {
  opacity: 1;
  filter: opacity(100%);
  background-color: #ff7e56;
}

.f-main-visual .f-cta img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

/* concept --------------------------------------------- */
.f-concept {
  position: relative;
  padding-top: 12.8rem;
  padding-bottom: 12.8rem;
  background-color: #F4EEE4;
}

@media screen and (max-width: 781px) {
  .f-concept {
    padding-top: 9.6rem;
    padding-bottom: 9.6rem;
  }
}
.f-concept__contents {
  width: 100%;
  margin-top: 6.4rem;
}

@media screen and (max-width: 781px) {
  .f-concept__contents {
    margin-top: 4rem;
  }
}
.f-concept__txt p {
  margin-top: 2.4rem;
  color: #434343;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 781px) {
  .f-concept__txt p {
    margin-top: 1.6rem;
    font-size: 1.6rem;
    text-align: left;
  }
}
.f-concept-list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 0 2.4rem;
  width: 100%;
  max-width: 640px;
  margin: 2.4rem auto 0;
  padding: 0;
}

@media screen and (max-width: 781px) {
  .f-concept-list {
    gap: 0 1.6rem;
  }
}
.f-concept-list li img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.f-concept__img {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 2.4rem auto 0;
}

.f-concept__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.f-concept__link {
  margin-top: 4rem;
}

@media screen and (max-width: 781px) {
  .f-concept__link {
    margin-top: 2.4rem;
  }
}
/* feature --------------------------------------------- */
.f-feature {
  position: relative;
  padding-top: 12.8rem;
}

@media screen and (max-width: 781px) {
  .f-feature {
    padding-top: 9.6rem;
  }
}
.f-feature__item {
  width: 100%;
  margin-top: 6.4rem;
}

@media screen and (max-width: 781px) {
  .f-feature__item {
    margin-top: 4rem;
  }
}
.f-feature__item .feature-title {
  position: relative;
  margin: 0;
  padding: 0 0 1rem 0;
  border-bottom: 2px solid #d3d3d3;
  color: #333;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: left;
}

@media screen and (max-width: 781px) {
  .f-feature__item .feature-title {
    font-size: 2rem;
  }
}
.f-feature__item .feature-title span {
  display: inline-block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 3.2rem;
  padding: 1rem 2.4rem 1rem 8rem;
  background-color: #0fa4a1;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}

@media screen and (max-width: 781px) {
  .f-feature__item .feature-title span {
    padding: 0.8rem 1.6rem 0.8rem 6.4rem;
  }
}
@media screen and (max-width: 600px) {
  .f-feature__item .feature-title span {
    display: block;
    margin-bottom: 0.8rem;
  }
}
.f-feature__item .feature-title span::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 72px;
  height: 72px;
  background-image: url("../images/common/icon_jabba.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-72%);
}

@media screen and (max-width: 781px) {
  .f-feature__item .feature-title span::before {
    width: 60px;
    height: 60px;
  }
}
.f-feature__item .feature-title span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: -16px;
  width: 16px;
  height: 100%;
  background-color: #0fa4a1;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.f-feature__wrap {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 2.4rem 4rem;
  width: 100%;
  margin-top: 4rem;
}

@media screen and (max-width: 781px) {
  .f-feature__wrap {
    flex-wrap: wrap;
    margin-top: 2.4rem;
  }
}
.f-feature__wrap-txt {
  width: calc(50% - 2rem);
}

@media screen and (max-width: 781px) {
  .f-feature__wrap-txt {
    width: calc(100% - 2rem);
    margin: 0 auto;
  }
}
.f-feature__wrap-txt p {
  margin-top: 2.4rem;
  color: #434343;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: left;
}

.f-feature__wrap-txt p:first-child {
  margin-top: 0;
}

@media screen and (max-width: 781px) {
  .f-feature__wrap-txt p {
    margin-top: 1.6rem;
    font-size: 1.6rem;
  }
}
.f-feature__wrap-txt .link-btn {
  margin: 0 0 0 auto;
}

.f-feature__wrap-thumb {
  width: calc(50% - 2rem);
}

@media screen and (max-width: 781px) {
  .f-feature__wrap-thumb {
    width: calc(100% - 2rem);
    margin: 0 auto;
  }
}
.f-feature__wrap-thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 20px;
}

.f-feature__wrap-wage {
  width: calc(50% - 2rem);
  padding: 2.4rem;
  border-radius: 10px;
  background-color: #FFF0EB;
}

@media screen and (max-width: 781px) {
  .f-feature__wrap-wage {
    width: calc(100% - 2rem);
    margin: 0 auto;
    padding: 1.6rem;
  }
}
.f-feature__wrap-wage table {
  width: 100%;
  margin: 1rem 0 0 0;
  border-collapse: collapse;
}

.f-feature__wrap-wage table td {
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
}

.f-feature__wrap-wage h4 {
  margin: 2.4rem 0 0 0;
  color: #434343;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}

.f-feature__wrap-wage h4:first-child {
  margin-top: 0;
}

.f-feature__wrap-wage ul {
  width: 100%;
  margin: 0;
  padding: 0;
}

.f-feature__wrap-wage ul li {
  position: relative;
  padding-left: 4rem;
  color: #565656;
  font-size: 1.6rem;
  line-height: 1.6;
  list-style: none;
}

.f-feature__wrap-wage ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 48px;
  background-image: url("../images/common/icon_star.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

.f-feature__wrap-wage ul li span {
  color: #434343;
  font-size: 1.8rem;
  font-weight: 700;
}

.f-feature__nowrap {
  width: 100%;
  margin-top: 4rem;
}

@media screen and (max-width: 781px) {
  .f-feature__nowrap {
    margin-top: 2.4rem;
  }
}
.f-feature__nowrap-gallery {
  display: -moz-grid;
  display: grid;
  grid-template-rows: auto;
  gap: 1.6rem 2.4rem;
  width: 100%;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 781px) {
  .f-feature__nowrap-gallery {
    gap: 1.6rem;
    width: calc(100% - 2rem);
    margin: 0 auto;
  }
}
.f-feature__nowrap-gallery.column-2 {
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 840px;
  margin: 2.4rem auto 0;
}

@media screen and (max-width: 600px) {
  .f-feature__nowrap-gallery.column-2 {
    grid-template-columns: 1fr;
    width: calc(100% - 2rem);
  }
}
.f-feature__nowrap-gallery.column-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 600px) {
  .f-feature__nowrap-gallery.column-3 {
    grid-template-columns: 1fr;
  }
}
.f-feature__nowrap-gallery figure.catch {
  position: relative;
}

.f-feature__nowrap-gallery figure.catch::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -2.4rem;
  left: -3.6rem;
  width: 132px;
  height: 62px;
  background-image: url("../images/front/feature_icon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 781px) {
  .f-feature__nowrap-gallery figure.catch::before {
    top: -1.2rem;
    left: -2rem;
    width: 96px;
    height: 46px;
  }
}
.f-feature__nowrap-gallery img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0;
  border-radius: 20px;
}

.f-feature__nowrap-gallery figcaption {
  margin-top: 1rem;
  color: #676767;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 781px) {
  .f-feature__nowrap-txt {
    width: calc(100% - 2rem);
    margin: 0 auto;
  }
}
.f-feature__nowrap-txt p {
  margin-top: 2.4rem;
  color: #434343;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 781px) {
  .f-feature__nowrap-txt p {
    margin-top: 1.6rem;
    font-size: 1.6rem;
    text-align: left;
  }
}
.f-feature__nowrap-txt .link-btn {
  margin: 0 0 0 auto;
}

.f-feature__link {
  margin-top: 4rem;
}

@media screen and (max-width: 781px) {
  .f-feature__link {
    margin-top: 2.4rem;
  }
}
/* flow --------------------------------------------- */
.f-flow {
  position: relative;
  padding-top: 12.8rem;
  padding-bottom: 12.8rem;
}

@media screen and (max-width: 781px) {
  .f-flow {
    padding-top: 9.6rem;
    padding-bottom: 9.6rem;
  }
}
.f-flow__contents {
  width: 100%;
  margin-top: 6.4rem;
}

@media screen and (max-width: 781px) {
  .f-flow__contents {
    margin-top: 4rem;
  }
}
.f-flow-tbl {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  border-collapse: collapse;
}

.f-flow-tbl thead th {
  padding: 1.2rem 2.4rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 781px) {
  .f-flow-tbl thead th {
    padding: 1.2rem;
  }
}
.f-flow-tbl tbody th {
  padding: 1.2rem 2.4rem;
  text-align: center;
}

@media screen and (max-width: 781px) {
  .f-flow-tbl tbody th {
    padding: 1.2rem;
  }
}
.f-flow-tbl tbody td {
  padding: 1.2rem 2.4rem;
}

@media screen and (max-width: 781px) {
  .f-flow-tbl tbody td {
    padding: 1.2rem;
  }
}
/* voice --------------------------------------------- */
.f-voice {
  position: relative;
  padding-top: 12.8rem;
  padding-bottom: 12.8rem;
  background-color: #F9F9F9;
}

@media screen and (max-width: 781px) {
  .f-voice {
    padding-top: 9.6rem;
    padding-bottom: 9.6rem;
  }
}
.f-voice__contents {
  width: 100%;
  margin-top: 6.4rem;
}

@media screen and (max-width: 781px) {
  .f-voice__contents {
    margin-top: 4rem;
  }
}
.f-voice-list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.4rem;
  width: 100%;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 781px) {
  .f-voice-list {
    justify-content: flex-start;
    gap: 2.4rem 1.6rem;
  }
}
.f-voice-list li {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 244px;
  height: 100%;
  padding: 1.6rem 2.4rem;
  background-image: url("../images/common/bg_cloud.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  color: #565656;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  list-style: none;
  aspect-ratio: 3/2;
}

@media screen and (max-width: 781px) {
  .f-voice-list li {
    width: calc(50% - 0.8rem);
    padding: 0.8rem 1.6rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
/* social --------------------------------------------- */
.f-social {
  padding-top: 12.8rem;
}

@media screen and (max-width: 781px) {
  .f-social {
    padding-top: 9.6rem;
  }
}
.f-social__contents {
  width: 100%;
  margin-top: 6.4rem;
}

@media screen and (max-width: 781px) {
  .f-social__contents {
    margin-top: 4rem;
  }
}
/* column --------------------------------------------- */
.f-column {
  padding-top: 12.8rem;
}

@media screen and (max-width: 781px) {
  .f-column {
    padding-top: 9.6rem;
  }
}
.f-column .column-cat-list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  width: 100%;
  margin-top: 6.4rem;
}

@media screen and (max-width: 781px) {
  .f-column .column-cat-list {
    margin-top: 4rem;
  }
}
.f-column .column-cat-list .column-cat__item {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2rem 1.2rem 0.4rem;
  border-radius: 4px;
  background-color: #F9F9F9;
  color: #434343;
  font-size: 1.6rem;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

.f-column .column-cat-list .column-cat__item:hover {
  color: #0fa4a1;
}

.f-column .column-cat-list .column-cat__item.is-active {
  color: #0fa4a1;
}

.f-column .column-tab {
  padding-top: 6.4rem;
}

@media screen and (max-width: 781px) {
  .f-column .column-tab {
    padding-top: 4rem;
  }
}
.f-column .column-tab__wrap {
  width: 100%;
  margin-top: 6.4rem;
}

@media screen and (max-width: 781px) {
  .f-column .column-tab__wrap {
    margin-top: 4rem;
  }
}
.f-column .column-tab__panel {
  display: none;
}

.f-column .column-tab__panel.is-active {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 2.4rem 4rem;
  width: 100%;
}

@media screen and (max-width: 781px) {
  .f-column .column-tab__panel.is-active {
    gap: 1.6rem 2.4rem;
    flex-wrap: wrap;
  }
}
.f-column .column-tab__panel.is-active .column-card {
  width: calc(33.3333333333% - 2rem);
  flex: none !important;
}

@media screen and (max-width: 781px) {
  .f-column .column-tab__panel.is-active .column-card {
    width: calc(50% - 1.2rem);
  }
}
@media screen and (max-width: 600px) {
  .f-column .column-tab__panel.is-active .column-card {
    width: 100%;
  }
}
.f-column__link {
  margin-top: 6.4rem;
}

@media screen and (max-width: 781px) {
  .f-column__link {
    margin-top: 4rem;
  }
}
/* access --------------------------------------------- */
.f-access {
  position: relative;
  padding-top: 12.8rem;
}

@media screen and (max-width: 781px) {
  .f-access {
    padding-top: 9.6rem;
  }
}
.f-access__contents {
  margin-top: 6.4rem;
  margin-bottom: 6.4rem;
}

@media screen and (max-width: 781px) {
  .f-access__contents {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.f-access__contents p {
  margin-top: 0;
  text-align: center;
}

@media screen and (max-width: 781px) {
  .f-access__contents p {
    text-align: left;
  }
}
.f-access .gmap {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.f-access .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */
