@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

:root {
  --semi-fontsize: 0.72rem;
  --normal-fontsize: 0.85rem;
  --middle-fontsize: 0.95rem;
  --big-fontsize: 1.2rem;
  --line-height: 1.6;
}

@media screen and (min-width: 600px) {
  :root {
    --semi-fontsize: 0.78rem;
    --normal-fontsize: 0.92rem;
    --middle-fontsize: 1.2rem;
    --big-fontsize: 1.4rem;
    --line-height: 1.7;
  }
}

@media screen and (min-width: 1024px) {
  :root {
    --semi-fontsize: 0.83rem;
    --normal-fontsize: 1rem;
    --middle-fontsize: 1.3rem;
    --big-fontsize: 1.6rem;
    --line-height: 1.8;
  }
}

@media screen and (min-width: 1536px) {
  :root {
    --semi-fontsize: 0.97rem;
    --normal-fontsize: 1.1rem;
    --middle-fontsize: 1.4rem;
    --big-fontsize: 2.0rem;
    --line-height: 1.9;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: var(--normal-fontsize);
  font-style: normal;
  color: #181616;
  line-height: var(--line-height);
  letter-spacing: 0.08rem;
  font-feature-settings: 'palt';
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

p {
  word-break: break-word;
  font-size: var(--normal-fontsize);
  line-height: var(--line-height);
}

@media screen and (min-width: 1024px) {
  p{
    font-weight: 500;
  }
}

a {
  text-decoration: none;
  color: #000;
  font-size: var(--normal-fontsize);
  line-height: var(--line-height);
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  line-height: 0;
}
table {
  border-collapse: collapse;
}
ol, ul {
    list-style: none;
}
button{
  outline: none;
  border: 0;
}
a:link, a:visited, a:active, a:hover {
  overflow: hidden;
  outline: none;
}

.sp-only {
  display: block;
}
.tb-only{
  display: none;
}
.pc-only {
  display: none;
}

@media screen and (min-width: 599px) {
  .sp-only {
    display: none;
  }
  .tb-only {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .pc-only {
    display: block;
  }
}

/*-- ここからHEADER --*/

.site-header {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 100;
  /* background: rgba(255,255,255,0.01);
  box-shadow: 0 3px 15px rgba(0,0,0,0.2); */
}

.header-inner {
  display: flex;
  align-items: center;
  padding-inline: 1rem;
  min-height: 64px;
}

.site-logo {
  margin: 0;
}
.site-logo img {
  width: 130px;
}

.hamburger {
  margin-inline-start: auto;
  width: 28px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  inset-inline-start: 0;
  width: 100%;
  height: 1px;
  background: #f2f2f2;
  transition: transform .3s ease, opacity .3s ease;
}

.hamburger span:nth-child(1) { inset-block-start: 0; }
.hamburger span:nth-child(2) { inset-block-start: 11px; }
.hamburger span:nth-child(3) { inset-block-start: 22px; }

.hamburger.is-open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.global-nav {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.92);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.global-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.global-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.global-nav li {
  margin-block: 1.5rem;
}

.global-nav a {
  font-size: 1rem;
  letter-spacing: .15em;
  color: #fff;
  text-decoration: none;
}


@media (min-width: 1280px) {
  .header-inner {
    padding-inline: 2rem;
  }

  .hamburger {
    display: none;
  }

  .global-nav {
    position: static;
    opacity: 1;
    pointer-events: auto;
    background: none;
    margin-inline-start: auto;
    display: block;
  }

  .global-nav ul {
    display: flex;
    gap: 2rem;
  }

  .global-nav li {
    margin: 0;
    font-size: .85rem;
  }

  .global-nav a {
    color: #111;
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .global-nav a::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    inset-block-end: -6px;
    width: 100%;
    height: 1px;
    background: #ff0;
    opacity: 0;
    transform: translateY(4px);
    transition: .3s;
  }

  .global-nav a:hover::after {
    opacity: 1;
    transform: translateY(0);
  }
}
/*-- ここまでHEADER --*/

/* ここから 共通 */
.marker-title {
  position: relative;
  display: inline-block;
}
.marker-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  height: 0.2rem;
  width: 0%;
  background: linear-gradient(to right, #093781, #1485cc) ;
  transition: width 0.5s ease-in-out;
}
.marker-title.active::after {
  width: 100%;
}

.tb-only,
.pc-only{
  display: none;
}

@media (min-width: 600px) {
  .sp-only{
    display: none;
  }
  
  .tb-only{
    display: block;
  }
}

@media (min-width: 1024px) {
  .pc-only{
    display: block;
  }
}
/* ここまで 共通 */

/* ここからMAIN VISUAL */
.kv {
  min-height: 30vh;
  background-image: url("../images/bg_sendai.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.kv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.35);
}

@media (min-width: 1024px) {
  .kv {
    min-height: 42vh;
    background-attachment: fixed;
  }
}
/* ここまでMAIN VISUAL */

/* ここから contents */
.access__title {
  text-align: center;
  font-size: var(--middle-fontsize);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 56px 0 32px;
  position: relative;
  color: #111;
}

.access__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: #133592;
  margin: 16px auto 0;
}

@media (min-width: 768px) {
  .access__title {
    margin: 72px 0 50px;
  }

  .access__title::after {
    width: 80px;
  }
}

@media (min-width: 1680px) {
  .access__title {
    margin: 100px 0 80px;
  }
}

.access__content__title {
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.06em;
  margin: 20px 0 24px;
  position: relative;
  color: #133592;
}

.access__content__title::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #133592;
  margin: 12px auto 0;
}

@media (min-width: 768px) {
  .access__content__title {
    margin: 48px 0;
  }

  .access__content__title::after {
    width: 56px;
  }
}

.access {
  max-width: 1000px;
  margin: 20px auto 40px;
  padding: 0 16px;
}

.access__tab {
  display: flex;
  gap: 4px;
  margin: 46px 0 23px;
}

.access__tab__link {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 10px;
  line-height: 1.4;
  background: #f3f3f3;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.access__tab__link.is-active {
  background: #133592;
  color: #fff;
  font-weight: 600;
}

.access__contents {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px 20px 10px;
}

.access__content {
  display: none;
}

.access__content.is-active {
  display: block;
}

.access__contents h4 {
  margin-bottom: 20px;
  font-size: var(--middle-fontsize);
}

@media (min-width: 768px) {
  .access {
    padding: 0 4% 30px;
  }

  .access__tab {
    margin: 0 0 30px;
  }

  .access__tab__link {
    padding: 14px 10px;
    font-size: 12px;
  }

  .access__contents {
    padding: 0 4% 60px;
  }
}

@media (min-width: 1024px) {
  .access {
    padding: 0 0 60px;
  }

  .access__tab__link {
    padding: 14px 10px;
    font-size: var(--normal-fontsize);
  }

  .access__contents {
    padding: 0 60px 60px;
  }

}

@media (min-width: 1680px) {
  .access__tab {
    margin: 0 0 60px;
  }

  .access__contents {
    padding: 0 60px 80px;
  }
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.intro {
  max-width: 720px;
  margin: 30px auto;
}

.ukai{
  background: #FF00DE;
  padding: 2%;
  max-width: 720px;
  margin: 30px auto 20px;
}

.ukai p{
  color: #FFF;
  font-weight: bold;
  font-size: var(--middle-fontsize);
  line-height: 1.4;
  text-align: center;
}

.ukai-map{
  margin-bottom: 30px;
}

.ukai-map img {
  margin: 0 auto;
  width: 100%;
  display: block;
}

.main-map {
  margin-bottom: 24px;
}

.main-map img {
  margin: 0 auto;
  width: 100%;
  display: block;
}

.car-route {
  margin: 40px 0;
}

.car-route-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.car-route-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.car-route-item p {
  margin: 0;
}

.car-route li::before{
  content:" - ";
  padding-right: 0.2em;
}

.route-caution{
  font-size: 11px;
  padding-top: 12px;
}

@media (min-width: 768px) {
  .intro {
    text-align: center;
    margin: 0 auto 32px;
  }

  .ukai {
    text-align: center;
    margin: 0 auto 24px;
  }

  .ukai-map{
    margin-bottom: 32px;
  }

  .car-route-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 32px;
    padding: 20px 0;
  }

  .car-route {
    margin: 60px 0;
  }

  .car-route li{
    line-height: 2.4;
  }
}

@media (min-width: 1024px) {

  .intro {
    margin: 0 auto 56px;
  }

  .ukai {
    margin: 0 auto 40px;
  }

  .ukai-map{
    margin-bottom: 56px;
  }

  .ukai p{
    font-size: var(--big-fontsize);
  }

  .car-route {
    margin: 80px 0;
  }

  .car-route-grid {
    gap: 80px 60px;
  }

  .route-caution {
    font-size: 13px;
  }
}

.public-route {
  padding: 10px 0 20px;
  line-height: 1.7;
}

.public-route__block {
  margin-bottom: 50px;
}

.public-route__block a{
  color: #133592;
}

@media (min-width: 600px) {
  .public-route {
    padding: 0 8%;
  }
}

@media (min-width: 1024px) {
  .public-route {
    padding: 8px 8%;
  }
}

#location strong{
  font-weight: bold;
  line-height: 2.6;
}

.mb-0{
  margin-bottom: 0;
}

/* map */
.map-wrap {
  width: 100%;
}

#map {
  width: 100%;
  height: 320px;
}

.access-map__title{
  text-align: center;
  padding: 18px 0;
}

@media (min-width: 768px) {
  #map {
    height: 420px;
  }
}

@media (min-width: 1024px) {
  #map {
    height: 480px;
  }
  
  .access-map__title{
    padding: 24px 0 18px;
  }
}
/* map */

/* ここまで contents */

/* ここから kodawari bnr */
.kodawari__bnr__contents{
  background: #f8f6fb;
  background: linear-gradient(90deg, rgba(248, 246, 251, 1) 0%, rgba(235, 235, 235, 1) 100%);
  padding: 6%;
}
.kodawari__bnr__wrap{
  max-width: 1400px;
  margin: auto;
}
.kodawari__bnr__wrap h2{
  font-size: var(--middle-fontsize);
  text-align: center;
  padding: 0 0 1rem;
}
.kodawari__bnr{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.kodawari__bnr a{
  position: relative;
  display: block;
  overflow: hidden;
}

.kodawari__bnr img{
  width: 100%;
  height: auto;
  display: block;
  transition:
    transform .6s cubic-bezier(.22,.61,.36,1),
    filter .6s ease;
  will-change: transform;
}

.kodawari__bnr a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(
    90deg,
    #d6001c,
    #d9101e
  );
  transition: width .5s ease;
  z-index: 2;
}

@media (hover: hover){
  .kodawari__bnr a:hover img{
    transform: scale(1.03);
    filter: brightness(1.05) contrast(1.05);
  }

  .kodawari__bnr a:hover::before{
    opacity: .85;
  }

  .kodawari__bnr a:hover::after{
    width: 100%;
  }
}

.kodawari__bnr a:focus-visible{
  outline: 2px solid #111;
  outline-offset: 4px;
}

.kodawari__bnr{
  align-items: stretch;
}

@media (max-width: 767px){
  .kodawari__bnr a::after{
    height: 3px;
  }
}

@media (min-width: 1024px) {
  .kodawari__bnr__wrap h2{
    padding: 0 0 2rem;
  }
  .kodawari__bnr{
    gap: 1rem;
  }
}

@media (min-width: 1900px) {
  .kodawari__bnr__wrap h2{
    padding: 0 0 3rem;
  }
  .kodawari__bnr{
    gap: 1.5rem;
  }
}
/* ここまで kodawari bnr */

/* ここから shop info */
.shop__infowrap {
  margin: 0 auto;
  background: #f5faff;
  padding: 40px 20px;
}

.shop__list__title {
  font-size: var(--big-fontsize);
  text-align: center;
  margin-bottom: 0.7rem;
  border-bottom: 2px solid #093781;
  padding-bottom: 10px;
}

.shop__list_title span {
  background: linear-gradient(90deg, #1485cc 0%, #093781 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.shop__open {
  text-align: center;
  font-size: var(--semi-fontsize);
  margin-bottom: 30px;
}

.shop__adress__contents{
    max-width: 580px;
    margin: auto;
}
.shop__adress_wrap {
  margin-bottom: 40px;
  font-size: var(--semi-fontsize);
}

.shop__adress_wrap h3 {
  font-size: var(--middle-fontsize);
  border-left: 5px solid #093781;
  padding-left: 10px;
  margin-bottom: 15px;
  color: #093781;
}

.shop__adress_wrap h3 span{
  color: #FF2323;
}

.shop__table {
  width: 100%;
  border-collapse: collapse;
}

.shop__table th,
.shop__table td {
  padding: 7px 15px;
  border-bottom: 1px solid #555;
  text-align: left;
}

.shop_table tbody tr:last-child th,
.shop_table tbody tr:last-child td {
  border-bottom: none;
}

.shop__table th.tenpo {
  font-weight: bold;
  white-space: nowrap;
  width: 20%;
}

.shop__table td.adress {
  width: 75%;
}

.shop__table td.detail{
  width: 15%;
}

.shop__table td.detail a {
  color: #093781;
  text-decoration: none;
  border-bottom: 1px dashed #1485cc;
  transition: all 0.3s ease;
  font-size: var(--semi-fontsize);
}

.shop__table td.detail a:hover {
  color: #1485cc;
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 1024px) {
  .shop__infowrap {
    padding: 6rem 2%;
  }
  .shop__list__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .shop__adress__contents {
    max-width: 900px;
    margin: 4rem auto 0;
  }
  .shop__table tbody{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
  }
  .shop__table th.tenpo {
    width: 20%;
  }
  .shop__adress_wrap h3 {
    font-size: var(--normal-fontsize);
  }
}

@media screen and (min-width: 1440px) {
  .shop__adress__contents {
    max-width: 1100px;
  }
  .shop__table tbody{
    gap: 0 4rem;
  }
}
/* ここまで shop info */

/* ここから フッター */
.p-footer {
  padding: 20px 60px 10px;
  background-color: #3D3E4A;
}
.p-footer__inner {
  display: block;
}
.p-footer__nav {
  font-size: 0.65rem;
}
.p-footer__navList {
  max-width: 280px;
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-footer__navItem {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #75706f;
}
.p-footer__navItem:nth-child(3n) {
  border-right: transparent;
  margin-right: 0;
  padding-right: 0;
}
.p-footer__logo {
  width: 100%;
  height: auto;
  max-width: 160px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 24px;
}
.p-footer__navItem a {
  color: #FFF;
  font-size: 0.8rem;
}
.p-footer__copyLight {
  text-align: center;
  display: block;
  margin-top: 30px;
  font-size: 0.7rem;
  color: #FFF;
}

@media screen and (min-width: 599px) {
  .p-footer__navList {
    max-width: 100%;
}
.p-footer__navItem:nth-child(3n) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #75706f;
}
.p-footer__navItem:last-child {
  border-right: transparent;
  margin-right: 0;
  padding-right: 0;
}
}

@media screen and (min-width: 768px) {
  .p-footer__inner {
    max-width: 840px;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ここまで フッター */

/* go to TOP */
#pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  margin: 0;
  z-index: 999;
}
#pagetop a{
  position: relative;
  display: flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  background:#001e62;
  transition: opacity .6s ease;
  color: #FFF;
  align-items: center;
  text-decoration: none;
  font-size: 40px;
  border-radius:100%;
}
#pagetop a:hover {
  opacity: .6;
}
@media screen and (max-width:1024px) {
#pagetop a {
  width: 40px;
  height: 40px;
  font-size: 20px;
}
}
/* go to TOP */
