@charset "utf-8";
/* CSS Document */

/* ===============================
VARIABLE
=============================== */

:root{
  --container:1080px;
  --main-blue:#0078D4;
  --dark-blue:#0C5EA0;
  --accent-green:#1BCFB2;
  --accent-pink:#FF1C63;
  --text:#3A3A3A;
}

/* ===============================
PC / SP 表示切替
=============================== */

.pc{ display:block; }
.sp{ display:none; }

@media (max-width:768px){
  .pc{ display:none; }
  .sp{ display:block; }
}

/* ===============================
FONT SIZE（ページ別設計）
=============================== */

/* トップ（PC） */
.home h1{ font-size:40px; font-weight:600; }
.home h2{ font-size:18px; font-weight:600; }
.home .h2-en{ font-size:62px; font-weight:700; }
.home .h3-lg{ font-size:36px; font-weight:600; }
.home .h3-sm{ font-size:24px; font-weight:600; }
.home p{ font-size:16px; }

/* トップ（SP） */
@media (max-width:768px){
  .home h1{ font-size:24px; }
  .home h2{ font-size:12px; }
  .home .h2-en{ font-size:36px; }
  .home .h3-lg{ font-size:24px; }
  .home .h3-sm{ font-size:20px; }
  .home p{ font-size:16px; }
}

/* 下層（PC） */
body:not(.home) h1{ font-size:44px; font-weight:600; }
body:not(.home) h2{ font-size:36px; font-weight:700; }
body:not(.home) h3{ font-size:24px; font-weight:600; }
body:not(.home) p{ font-size:16px; }

/* 下層（SP） */
@media (max-width:768px){
  body:not(.home) h1{ font-size:28px; }
  body:not(.home) h2{ font-size:24px; }
  body:not(.home) h3{ font-size:20px; }
  body:not(.home) p{ font-size:16px; }
}

/* ===============================
BASE
=============================== */

html{
  font-size:16px;
  scroll-behavior:smooth;
}

body{
  font-family:
  "Karla",
  "Hiragino Kaku Gothic ProN",
  sans-serif;
  font-size:16px;
  color:var(--text);
  overflow-x:hidden;
}

/* ===============================
LAYOUT（基礎）
=============================== */

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

.section{
  padding:100px 0;
}

/* パンくず */
.breadcrumb{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:0;
  margin-bottom:60px;
  font-family:"Hiragino Kaku Gothic ProN", sans-serif;
  font-weight:300;
  font-size:14px;
  color:#484848;
}

.breadcrumb a,
.breadcrumb span{
  color:#484848;
  text-decoration:none;
}

.breadcrumb a:hover,
.breadcrumb span:hover{
  opacity:0.5;
}

.breadcrumb__home{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
}

.breadcrumb__home img{
  width:11px;
  display:block;
}

.breadcrumb__item{
  display:inline-flex;
  align-items:center;
  min-width:0;
}

.breadcrumb__item::before{
  content:"";
  display:inline-block;
  width:6px;
  height:9px;
  margin:0 15px;
  background:#0186ED;
  clip-path:polygon(0 0, 100% 50%, 0 100%);
  flex:0 0 auto;
}

@media (max-width:768px){
  .breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:0;
    margin-bottom:60px;
    font-family:"Hiragino Kaku Gothic ProN", sans-serif;
    font-weight:300;
    font-size:12px;
    color:#484848;
  }

  .breadcrumb__home{
    flex:0 0 auto;
    white-space:nowrap;
  }

  .breadcrumb > .breadcrumb__item:not(.breadcrumb__item--current){
    flex:0 0 auto;
    white-space:nowrap;
  }

  .breadcrumb__item--current{
    flex:1 1 0;
    min-width:0;
    white-space:normal;
    word-break:break-word;
  }

  .breadcrumb__item::before{
    margin:0 10px;
  }
}