@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.15rem;
    --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.01rem;
  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: #d9d9d9;
    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%;
}

/* ここまで 共通 */

/* ここからMAIN VISUAL */
.kv {
  min-height: 36vh;
  background-image: url("../images/bg_iso4.jpg");
  background-size: cover;
  background-position: top;
  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(0,0,0,0.35);
}

.kv__inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  padding: 0 8%;
}

.kv__title {
  font-size: var(--big-fontsize);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.2;
  text-align: left;
}

@media (min-width: 600px) {
  .kv__title {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .kv {
    min-height: 50vh;
    background-attachment: fixed;
  }

  .kv__title {
    font-size: 2.2rem;
    letter-spacing: 0.09em;
  }
}

@media (min-width: 1900px) {
  .kv {
    min-height: 520px;
  }
  .kv__title {
    font-size: 2.4rem;
  }
}
/* ここまでMAIN VISUAL */

/* ここから MAIN */
main{
  padding: 4% 0;
}

@media (min-width: 1024px) {
  main{
    padding: 0;
  }
}

@media (min-width: 1900px) {
  main{
    padding: 2rem 0 4rem;
  }
}

main h2 {
  font-size: var(--middle-fontsize);
  padding: 0 0 1rem 1rem;
  position: relative;
}

main h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 4px;
  height: 1.3em;
  background-color: #00009e;
}

main h3 {
  font-size: var(--middle-fontsize);
  padding: 0 0 1rem 1rem;
  position: relative;
}

main h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 4px;
  height: 1.3em;
  background-color: #d6001c;
}

@media (min-width: 1024px) {
  main h2,
  main h3 {
    padding: 0 0 2rem 1rem;
  }
  main h2::before,
  main h3::before {
    height: 1.8em;
  }
}

.container {
  max-width: 840px;
  margin: 0 auto;
  padding: 2rem 8%;
}

.index__container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 8% 2rem;
}

.main__container{
  max-width: 840px;
  margin: 0 auto;
  padding: 0 8% 2rem;
}

@media (min-width: 600px) {
  .container {
    padding: 4rem 8% 2rem;
  }
  .index__container {
    padding: 0 8% 2.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 4rem 0;
  }
  .index__container {
    padding: 0 0 4rem;
  }
  .main__container{
    padding: 0 0 4rem;
  }
}

.intro,
.index,
.content,
.about {
  background: #fff;
}

.index ul {
  list-style: none;
  padding: 1rem;
  background: #eff6f9;
}

.index li {
  margin-bottom: 0.6rem;
}

.index li:last-child {
  margin-bottom: 0;
}

.index a {
  position: relative;
  color: #000;
  text-decoration: none;
  padding-right: 1.5em;
}

.index a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #d6001c;
  transition: transform .2s ease, opacity .2s ease;
}

.index a:hover::after {
  transform: translateY(-50%) translateX(4px);
  opacity: 0.8;
}

@media (min-width: 600px) {
  .index ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 1.5rem;
    padding: 1rem 1.5rem;
  }

  .index li {
    margin-bottom: 0;
  }

  .index a {
    font-weight: 500;
  }
}

@media (min-width: 1024px) {
  .index ul {
    padding: 2rem 4rem;
  }
}

table.iso__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: var(--semi-fontsize);
}

.iso__table th,
.iso__table td {
  padding: 8px 12px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}

.iso__table th{
  width: 25%;
}

.iso__table .iso__img{
  line-height: 1;
}

.iso__table .iso__img img{
  width: 45%;
  padding: 8px 0;
}

@media (min-width: 600px) {
  table.iso__table {
    width: fit-content;
    margin: 2rem auto;
    font-size: var(--normal-fontsize);
  }
  .iso__table th,
  .iso__table td {
    padding: 8px 18px;
  }
}

@media (min-width: 1440px) {
  table.iso__table {
    width: 800px;
    margin: 3rem auto;
  }
  .iso__table th,
  .iso__table td {
    padding: 10px 24px;
  }
}

.parallax {
  height: clamp(180px, 30vh, 380px);
  filter: saturate(0.95) contrast(1.05);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.p1 { background-image: url("../images/bg_iso1.jpg"); }
.p2 { background-image: url("../images/bg_iso2.jpg"); }
.p3 { background-image: url("../images/bg_iso3.jpg"); }
.p4 { background-image: url("../images/bg_iso4.jpg"); }


@media (min-width: 600px) {
  .parallax {
    background-attachment: fixed;
    background-position: center;
  }
}

@media (min-width: 1024px) {
  .parallax {
    height: 380px;
  }
}

@media (min-width: 1440px) {
  .parallax {
    height: 440px;
  }
}

@media (min-width: 1900px) {
  .parallax {
    height: 580px;
  }
}
/* ここまで MAIN */

/* ここから 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: 1000px;
  }
  .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 */
