/* ==========================================================================
   GO POINT - common.css（共通部品）
   全ページ共通: 文字/背景ユーティリティ・ヘッダー/フッター・パンくず等。
   ※ SCSS廃止・このCSSを直接編集。読み込み順: reset → common → style（→ slick）。
      更新時は inc/head.php の各 ?v= を変更してキャッシュ更新。
   ========================================================================== */

.monospace {
  font-family: monospace;
}
.Oswald_text {
  font-family: "Oswald", sans-serif;
}
h2,
.text_huge {
  font-size: 32px;
}
.text_large {
  font-size: 24px;
}
.text_big {
  font-size: 20px;
}
p,
.text_normal {
  font-size: 16px;
}
.text_small {
  font-size: 14px;
}
.text_little {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  h2,
  .text_huge {
    font-size: 40px;
  }
  .text_large {
    font-size: 32px;
  }
  .text_big {
    font-size: 24px;
  }
  p,
  .text_normal {
    font-size: 18px;
  }
  .text_small {
    font-size: 16px;
  }
  .text_little {
    font-size: 14px;
  }
}
.font_roboto {
  font-family: "Roboto", sans-serif;
}
.font_hiragino {
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
}
.hide_sp {
  display: none;
}
.hide_pc {
  display: block;
}
@media screen and (min-width: 768px) {
  .hide_sp {
    display: block;
  }
  .hide_pc {
    display: none;
  }
}
.bg_white {
  background-color: var(--color-white);
}
.bg_blk {
  background-color: var(--color-black);
}
.bg_orn {
  background-color: var(--color-primary);
}
.bg_yel {
  background-color: #ffe528;
}
.bg_blu {
  background-color: #0071e3;
}
.text_wht {
  color: var(--color-white);
}
.text_blk {
  color: var(--color-black);
}
.text_gry {
  color: var(--color-muted);
}
.text_orn {
  color: var(--color-primary);
}
.text_blu {
  color: #0071e3;
}
.text_bold {
  font-weight: bold;
}
.text_center {
  text-align: center;
}
.imgbox1-1 {
  position: relative;
  overflow: hidden;
}
.imgbox1-1::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.imgbox1-1 img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.imgbox3-2 {
  position: relative;
}
.imgbox3-2::before {
  content: "";
  display: block;
  padding-top: 66.66%;
}
.imgbox3-2 img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.imgbox16-9 {
  position: relative;
  overflow: hidden;
}
.imgbox16-9::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.imgbox16-9 img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.border_blk {
  margin: 0;
  border: inherit;
  border-bottom: 1px solid #4444;
}
.border_gry {
  margin: 0;
  border: inherit;
  border-bottom: 1px solid var(--color-border);
}
.w_100 {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  max-width: none;
}
.radius {
  border-radius: 3px;
}
.shadow {
  box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.1);
}
span.marker_yellow {
  background: linear-gradient(transparent 70%, #fff000 60%);
}
.flex {
  display: flex;
}
.slick-slider li {
  margin: 0 5px;
}
.slick-slider img {
  width: 100%;
  height: auto;
}
header {
  position: absolute;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  /* height: 40px; */
  width: 100%;
}
header .inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  margin: 0;
}
header .inner img {
  width: 130px;
}
@media screen and (min-width: 768px) {
  header .inner img {
    width: 180px;
  }
}
.footer_img {
  position: relative;
  z-index: 0;
  margin-top: 50px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .footer_img {
    margin-top: 80px;
  }
}
.footer_img::before {
  content: "";
  background-image: url(../img/common/mockup_go-point.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(8px);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .footer_img img {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
  }
}
#go-fan .inner {
  background: none;
  padding: 50px 0;
}
#go-fan .inner img {
  width: 150px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #go-fan .inner img {
    width: 500px;
  }
}
footer {
  padding: 5px 0;
  font-weight: normal;
}
footer div{
  width: 95%;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  width: 95%;
  /* margin: 0 auto 30px; */
  margin: 0 auto;
}
/* @media screen and (min-width: 768px) {
  .breadcrumb {
    margin: 0 auto 50px;
  }
} */
.breadcrumb ol {
  display: flex;
  gap: 0 10px;
  list-style: none;
  padding: 0;
  font-size: 12px;
  margin: 0;
  padding: 10px 0;
}
.breadcrumb ol li {
  display: flex;
  align-items: center;
}
.breadcrumb ol li:first-child::before {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 4px;
  background-image: url(../img/common/ico_home.png);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}
.breadcrumb ol li:not(:last-child)::after {
  display: inline-block;
  transform: rotate(45deg);
  width: 0.3em;
  height: 0.3em;
  margin-left: 10px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  content: "";
}
.breadcrumb ol a {
  color: #999;
  text-decoration: none;
  line-height: 1;
  font-weight: normal;
}
.go-fab {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 18px;
  min-height: 44px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}
.go-fab__arrow {
  font-size: 16px;
  opacity: 0.85;
}
@media (hover: hover) and (pointer: fine) {
  .go-fab:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
  }
}
.go-fab:active {
  transform: scale(0.97);
}
.go-fab:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .go-fab {
    transition: none;
  }
}
#mainvisual {
  position: relative;
  height: 400px;
  border-bottom: 4px solid var(--color-primary);
}
#mainvisual .inner {
  width: 90%;
  max-width: 350px;
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  padding: 0;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  #mainvisual .inner {
    max-width: 800px;
  }
}
#mainvisual .inner .ttl {
  margin-bottom: 30px;
}
#mainvisual .inner .ttl img {
  width: 240px;
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  #mainvisual .inner .ttl img {
    width: 400px;
  }
}
#mainvisual .inner .sub_ttl {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #mainvisual .inner .sub_ttl {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
  }
}
#mainvisual .inner .sub_ttl div h2 {
  margin-bottom: 15px;
  line-height: 1;
}
#mainvisual .inner .sub_ttl img {
  width: 150px;
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  #mainvisual .inner .sub_ttl img {
    width: 180px;
    margin: 0 30px 0 0;
  }
}
#mainvisual .bg_mainvisual {
  height: 100%;
}
#mainvisual .bg_mainvisual::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 0);
}
#mainvisual .bg_mainvisual img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  height: 100%;
  width: 100%;
}
section .inner {
  padding: 30px;
  width: 95%;
  margin: 0 auto;
  background-color: var(--color-white);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section .inner {
    padding: 50px;
    max-width: 800px;
  }
}
section .inner .sec_ttl {
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  section .inner .sec_ttl {
    margin: 0 auto 50px;
  }
}
section .inner .sec_ttl img {
  height: auto;
  width: auto;
  max-height: 50px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  section .inner .sec_ttl img {
    max-height: 100px;
  }
}
section .inner .case {
  position: relative;
  padding-top: 50px;
}
section .inner .case img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
section .inner .case .illust {
  position: absolute;
  width: 100px;
  top: 0;
  left: 0;
  transform: translate(0, 0);
}
@media screen and (min-width: 768px) {
  section .inner .case .illust {
    width: 180px;
    top: -80px;
  }
}
.sub_ttl {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .sub_ttl {
    margin-bottom: 50px;
  }
}
.sub_ttl h2 {
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .sub_ttl h2 {
    margin-bottom: 20px;
  }
}
.sub_ttl h2 img {
  width: 150px;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .sub_ttl h2 img {
    width: 200px;
  }
}
@media screen and (min-width: 768px) {
  .sub_ttl h2 img {
    width: 240px;
  }
}
.sub_ttl p img {
  width: 50px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .sub_ttl p img {
    width: 80px;
  }
}
.bottom_area {
  width: 300px;
  margin: 30px auto;
}
.bottom_area .btn {
  display: block;
  padding: 10px 0;
  border: 1px solid var(--color-primary);
  border-radius: 50px;
  width: 100%;
  max-width: 350px;
  color: var(--color-primary);
}
.triangle {
  margin: 10px auto;
  background: var(--color-white);
  height: calc(tan(60deg) * 20px / 2);
  width: 20px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.btn_area a {
  transition: opacity 0.3s ease;
}
.btn_area a:hover {
  background-image: url(../img/common/bg_btn.jpg);
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}
.btn_area {
  position: relative;
}
.btn_area a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s ease;
  overflow: hidden;
  z-index: 1;
}
.btn_area a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/bg_btn.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.btn_area a:hover {
  color: var(--color-white);
}
.btn_area a:hover::before {
  opacity: 1;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #gopoint_top #top_about .contents {
    padding: 30px 60px;
  }
  #gopoint_top #top_about .contents .bottom_area {
    width: 50%;
  }
}
