@charset "UTF-8";
html {
  font-size: 62.5%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
}

/* .fnt-alert {color: #f35523;} */

body {
  font-family: "ヒラギノ角ゴ ProN", "メイリオ", sans-serif;
  line-height: 1.6;
  color: #333;
  background: url(../images/footer-bg.png) left bottom repeat-x;
}

/* 記事コンテンツ共通レイアウト
-------------------------------------*/

/* パンクズ */

.pan {
  background-color: #f5f5f5;
  /* padding: 1.5em; */
  border-top: 1px solid #00b6bc;
  border-bottom: 1px solid #ccc;
  margin-bottom: 40px;
}

.pan ul {
  display: flex;
  align-items: center;
}

.pan li {
  /* display: inline-block; */
  position: relative;
  box-sizing: border-box;
}

.pan li:first-of-type {
  /* margin-right: 12px; */
  /* background-color: rgb(182, 83, 83); */
  width: 27%;
}

.pan li:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 16px;
  height: 62px;
  background: url(../images/pan-arr-2.svg) center center / contain no-repeat;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.pan li:nth-of-type(2) {width: 35%;}

.pan li:nth-of-type(3) {width: 38%;}

.pan a {
  color: #333;
  padding: .5em;
  display: inline-block;
}

.pan li:first-of-type a {padding-left: 0;}

@media (min-width: 769px) {
  .pan {
    background-color: inherit;
    /* padding: 1.5em; */
    border-top: none;
    border-bottom: none;
    /* margin-bottom: 40px; */
    max-width: 750px;
    margin: 0 auto 40px;
    font-size: 14px;
  }

  .pan li {
    padding: 1em 0;
  }

  .pan li:not(:last-of-type) {margin-right: 12px;}


  .pan li:first-of-type {width: 26%;}
  .pan li:nth-of-type(2) {width: 22%;}
  .pan li:nth-of-type(3) {width: 52%;}
  
  .pan li:not(:nth-of-type(3))::after {
    width: 10px;
    height: 46px;
    right: -10px;
  }

  .pan a {
    padding: 10px;
    color: #888888;
  }

  .pan a:not(:last-of-type) {
    padding-left: 0;
  }
}

@media (max-width: 1100px) {
  .pan {
    padding: 0 15px;
  }
}

/* タイトル＆ディスクリプション */

.article-header {
  padding: 0 3vw;
  margin-bottom: 40px;
  word-wrap: break-word;
}

.article-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Kosugi Maru', sans-serif;
}

.article-header p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.article-header a {color: #086cdf;}

.article-header a img {border: none;}

.article-header img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* 記事見出し */

.article-header h2 {
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 3px dotted #00b6bc;
  margin-bottom: 15px;
}

.article-header h3 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #00b6bc;
  margin-bottom: 15px;
}

.article-header h4 {
  font-size: 1.6rem;
  font-weight: bold;
}

.article-header ul,
.article-header ol {
  font-size: 1.6rem;
  margin-bottom: 30px;
  padding-left: 20px;
}

.article-header ul {list-style: disc;}
.article-header ol {list-style: decimal;}

.article-header ul li {margin-bottom: 8px;}

.article-header blockquote {
  position: relative;
  padding: .5em .5em .5em 40px;
  box-sizing: border-box;
  font-size: 1.4rem;
  color: #666;
  background-color: #fafafa;
}

.article-header blockquote p {
  margin-bottom: 0;
  transform: skewX(-12deg);
}

.article-header blockquote {margin-bottom: 30px;}

.article-header blockquote::before {
  content: "“";
  font-size: 4rem;
  position: absolute;
  left: 10px;
  top: 0;
  color: #00b6bc;
}

.article-header pre {
  margin-bottom: 30px;
  font-size: 1.6rem;
  color: #333;
  white-space: pre-wrap;
}

.article-header strong {font-weight: bold;}

.article-header p em {font-style: italic;}


/* 記事一覧 */

.article-list {
  padding: 0 3vw;
  margin-bottom: 20px;
}

.article-list li {margin-bottom: 20px;}

.article-list-item a {
  display: block;
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 8px;
  color: #333;
  transition: .3s;
}

.article-list-item h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 8px;
  font-family: 'Kosugi Maru', sans-serif;
}

.article-list-time {
  font-size: 1.2rem;
  padding-left: 1.6em;
  margin-bottom: 3px;
  position: relative;
  color: #666;
}

.article-list-time::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-55%);
  width: 14px;
  height: 14px;
  background: url(../images/ico-clock.svg) left center / contain no-repeat;
}

.article-list-body {
  display: flex;
  justify-content: space-between;
}

.article-list-body-sum {
  width: 120px;
  height: 80px;
  overflow: hidden;
}

.article-list-body-disc {
  width: calc(100% - 130px);
  font-size: 1.2rem;
}

.article-list-body-sum img {
  object-fit: cover;
  width: 100%;
  height: 80px;
  transition: .3s;
}



@media (min-width: 769px) {

  .article-list-item li {display: flex;}

  .article-list-item a {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .article-list-item a:hover {
    box-shadow: 0px 1px 2px 2px rgba(88, 88, 88, 0.1);
  }

  .article-list-time {margin-top: auto;}

  .article-list-item a:hover .article-list-body-sum img {
    transform: scale(1.3);
  }
  .article-header {
    padding: 0;
  }

  .article-header h1 {
    font-size: 24px;
  }

  .article-list {
    padding: 0;
    margin-bottom: 20px;
  }

  .article-list li {margin-bottom: 0;}

  .article-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 20px;
  }

}

@media (max-width: 900px) {
  .article-list ul {
    display: block;
  }
  .article-list li {margin-bottom: 20px;}

}

/* 記事コンテンツSP版ナビ
-------------------------------------*/

.sp-nav {
  background-color: rgba(255, 255, 255, 0.97);
  position: fixed;
  top:61px;
  left: 0;
  right: 0;
  bottom:0;
  /* display: none; */
  /* visibility: hidden; */
  opacity: 1;
  transition: all .4s;
  min-height: 100vh;
  overflow: scroll;
}

/* .sp-nav.active {
  visibility: visible;
  opacity: 1;
} */

.sp-nav dl {
  padding: 40px 3vw 0;
}

.sp-nav dt {
  font-size: 2rem;
  font-weight: bold;
  color:#00b6bc;
  letter-spacing: 1px;
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 10px;
}

.sp-nav dt::before {
  content: "";
  position: absolute;
  display: block;
  width: 26px;
  height: 26px;
  left: 0;
  top: 50%;
}

.sp-nav-category::before {
  background: url("../images/ico-category.svg") left center / contain no-repeat;
  transform: translateY(-54%);
}

.sp-nav-about::before {
  background: url("../images/ico-nav-about.svg") left center / contain no-repeat;
  transform: translateY(-54%);
}

.sp-nav dd:not(:last-of-type) {
  margin-bottom: 40px;
} 

/* .sp-nav li:not(:last-of-type) {

} */

.sp-nav a {
  color: #333;
  font-size: 1.6rem;
  display: block;
  padding: 1em 0 1em 1.2em;
  border-bottom: 1px dotted #555555;
  position: relative;
}

.sp-nav a::before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  background: url("../images/ico-ft-arr.svg") left center / contain no-repeat;
  left:0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 375px) {
  .sp-nav dt {
    font-size: 1.6rem;
    padding-left: 2em;
  }
  .sp-nav dl {padding: 10px 3vw 0;}
  .sp-nav a {font-size: 1.4rem;}
}

/* サイドバー */

@media (min-width: 769px) {
  .sidebar-inner {
    max-width: 216px;
    /* background-color: rgb(190, 68, 68); */
    height: 100vh;
    margin-left: auto;
    padding-top: 120px;
  }

  .side-menu {
    margin-bottom: 30px;
  }
  .side-menu dt {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00b6bc;
    margin-bottom: 10px;
  }

  .side-menu dt {
    position: relative;
    font-family: 'Kosugi Maru', sans-serif;
    text-transform: uppercase;
  }

  .side-menu dt.side-menu-category::before {
    content :"";
    display:block;
    width: 24px;
    height: 24px;
    background: url("../images/ico-category.svg") center center / contain no-repeat;
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-60%);
  }

  .side-menu dt.side-menu-pu::before {
    content :"";
    display:block;
    width: 29px;
    height: 29px;
    background: url("../images/ico-pickup.svg") center center / contain no-repeat;
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
  }

  .side-menu-bnr:first-of-type {
    margin-bottom: 40px;
  }

  .side-menu-list a {
    color: #333;
    font-size: 1.4rem;
    display: block;
    padding: .9em .9em .9em 1.2em;
    border-bottom: 1px dashed #bbbbbb;
    position: relative;
    transition: .3s;
  }

  .side-menu-list a:hover {
    background-color:#ade9eb;
  }

  .side-menu-list a::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: url("../images/ico-arr-link.svg") center center / contain no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-54%);
    transition: .3s;
  }
}

/* --------------------------------- */

.link-txt {
  font-size: 1.6rem;
}

@media (min-width: 769px) {
  .link-txt {
    font-size: 14px;
  }
}

.link-txt::before {
  content: "";
  /* content: url(../images/ico-arr-link.svg); */
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(../images/ico-arr-link.svg) left center/contain no-repeat;
  margin-right: 2px;
}

/* ページ内リンク箇所 */
.col-std#link-sub-1,
.col-std#link-sub-2 {
  padding: 90px 0 60px;
}

.mv-pc {
  display: none;
}

/* 改行 */

@media (max-width: 480px) {
  .sp-br {
    display: block;
  }
  .pc-br {
    display: none;
  }
}

@media (min-width: 481px) {
  .sp-br {
    display: none;
  }
  .pc-br {
    display: block;
  }
}

@media (min-width: 482px) and (max-width: 768px) {
  /* .sp-br {display: none;} */
  .pc-br {
    display: none;
  }
}

a {
  color: #333;
  text-decoration: none;
}

.contents-inner {
  padding: 0 4vw;
}

@media (min-width: 481px) and (max-width: 768px) {
  .contents-inner {
    padding: 0 3vw;
  }
}

@media (min-width: 769px) {
  .contents-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
  }
}

#scroll {
  display: none;
	position: fixed;
	bottom: 20px;
	right: 4vw;
	cursor: pointer;
	opacity: 0.7;
	z-index: 999;
}

.footer {
  padding: 60px 0;
}

/* 記事コンテンツフッター
------------------------------------ */

.footer .contents-inner {
  padding: 0;
}

.footer-link-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  color:#00b6bc;
  padding: 0 3vw .5em;
  /* border-top: 1px dotted #00b6bc; */
  border-bottom: 1px dotted #00b6bc;
  margin-bottom: 12px;
  position: relative;
  cursor: pointer;
}

.footer-link-ttl::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../images/ico-link-open.png") center center / contain no-repeat;
  position: absolute;
  right: 3vw;
  top: 50%;
  transform: translateY(-72%);
}

.footer-link-ttl.active::after {
  background: url("../images/ico-link-close.png") center center / contain no-repeat;
}

.footer-link-list {
  padding: 0 3vw .5em;
  border-bottom: 1px dotted #00b6bc;
  margin-bottom: 14px;
}

@media (min-width: 769px) {
  .footer-link-list {
    display: block;
    padding: 0;
    border-bottom: none;
    margin-bottom: 0;
  }
  .footer-link-ttl {
    padding: 0;
    border-bottom: none;
    margin-bottom: 12px;
    cursor: inherit;
  }
  .footer-link-ttl::after {
    display: none;
  }
}

/* 記事コンテンツサイドメニュー
------------------------------------ */

.sidebar {display:none;}

.layout-1 {
  padding: 0;
}

@media (max-width: 1100px) {
  .layout-1 {padding: 0 15px;}
}

@media (max-width: 768px) {
  .layout-1 {padding: 0;}
}

@media (min-width: 769px) {
  .article-body {
    display: flex;
  }
  .main {
    order: 2;
    padding-bottom: 80px;
    width: 84%;
    max-width: calc(100% - 252px);
  }
  .sidebar {
    display: block;
    order: 1;
    width: 16%;
    min-width: 252px;
    background-color: #f5f5f5;
    min-height: 100vh;
    border-right: 1px solid #e3e3e3;
  }
  .layout-1 {
    max-width: 750px;
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .footer-col {
    display: flex;
    justify-content: space-between;
  }
  .footer {
    padding: 40px 0 100px;
    border-top: 1px solid #00b6bc;
  }
}

.footer-header {
  display: none;
}

.footer-header-catch {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

@media (min-width: 769px) {
  .footer-header {
    max-width: 242px;
    padding-top: 14px;
  }
}



.footer-link {
  margin-bottom: 40px;
  border-top: 1px solid #00b6bc;
  padding: 1.2em 0 0 0;
}

@media (min-width: 769px) {
  .footer-header {
    /* display: block; */
    margin-bottom: 60px;
    text-align: left;
  }
  .footer-link {
    border-top: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 15px;
  }
  .footer-link .footer-link-items {
    width: 25%;
  }
  .footer-link .footer-link-items:nth-of-type(2) {
    width: 36%;
  }
  .footer-link .footer-link-items:last-child {
    width: 36%;
  }
  .footer-header-catch {
    font-size: 12px;
  }
}

@media (min-width: 1024px) {
  .footer-header {
    display: block;
  }
  .footer-link {
    width: calc(100% - 280px);
  }
}

.ft-list-item a {
  display: block;
  padding: 1.2rem 0;
  color: #333333;
}

.ft-list-item p {
  font-size: 1.4rem;
  padding-left: 1.3rem;
  background: url("../images/ico-ft-arr.svg") left center no-repeat;
}

@media (min-width: 769px) {
  .ft-list-item {
    border-bottom: 10px;
  }
  .ft-list-item p {
    background: url("../images/ico-ft-arr.svg") left center no-repeat;
  }
  .ft-list-item a {
    padding: .6rem 0;
    line-height: 1.4;
    display: inline-block;
  }
}

.ft-list-sub {
  display: none;
}

@media (min-width: 769px) {
  .ft-list-sub {
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .ft-list-sub li {margin-bottom: 6px;}
  .ft-list-sub a {
    padding: 2px 0 2px 24px;
    color: #888888;
    position: relative;
  }
  .ft-list-sub a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    display: block;
    width: 4px;
    height: 4px;
    background-color: #00b6bc;
    border-radius: 50%;
  }
}

address {
  background-color: #00b6bc;
  color: white;
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem;
  font-family: "Kosugi Maru", sans-serif;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  border-bottom: 1px solid #00b6bc;
  background-color: rgba(255, 255, 255, 0.86);
  z-index: 9999;
}

.header-logo img {
  width: 140px;
}

@media (min-width: 769px) {
  .header {
    height: 70px;
  }
}

.header-inner {
  padding: 3vw;
}

@media (min-width: 481px) and (max-width: 768px) {
  .header-inner {
    padding: 1vw;
  }
}

@media (min-width: 769px) {
  .header-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px 0 0;
  }
}

@media (min-width: 769px) {
  .header-logo {
    position: fixed;
    background-color: #fff;
    width: 30%;
    top: 0;
    left: 0;
    height: 96px;
    text-align: right;
    padding: 10px 30px 0 0;
    background: url(../images/logo-bg.svg) right center no-repeat;
    z-index: 100;
  }

  .header-logo.off {
    background: unset;
  }

  .header-logo img {
    width: 210px;
  }

  .header-logo.off img {
    width: 160px;
  }
}

@media (min-width: 769px) {
  .header-nav {
    /* max-width: 540px; */
    max-width: 640px;
    visibility: visible;
    position: static;
    opacity: 1;
    height: auto;
    margin-left: auto;
    background: none;
  }
}

@media (min-width: 900px) {
  .header-nav {
    max-width: 720px;
  }
}

@media (min-width: 769px) {
  .header-nav-list {
    display: flex;
    justify-content: flex-end;
  }
}

.header-nav-list li {
  border-bottom: 1px dotted #00b6bc;
  font-family: "Kosugi Maru", sans-serif;
}

@media (min-width: 769px) {
  .header-nav-list li {
    border-bottom: none;
  }
  .header-nav-list li:not(:last-child) {
    margin-right: 3.4rem;
  }
}

.header-nav-list li a {
  display: block;
  padding: 3rem 0 2.6rem 8vw;
  background: url(../images/nav-circle.png) 3vw center no-repeat;
  font-size: 1.6rem;
  color: #333333;
}

@media (min-width: 769px) {
  .header-nav-list li a {
    position: relative;
    padding: 1rem 0 1rem 14px;
    background-position: left center;
    font-size: 16px;
    color: #555;
  }
  .header-nav-list li a::after {
    content: "";
    width: 1px;
    left: 0;
    opacity: 0;
    transition: 0.3s;
  }
  .header-nav-list li a:hover::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    opacity: 1;
    width: 120px;
    height: 2px;
    background-color: #f2a44c;
  }
}

@media (min-width: 770px) and (max-width: 958px) {
  .header-nav-list li a {
    font-size: 14px;
    background: none !important;
  }
  .header-nav-list li:not(:last-child) {
    margin-right: 1.4rem;
  }

  .header-logo img {
    width: 192px;
  }
}

@media (min-width: 481px) and (max-width: 769px) {
  .header-nav-list li a {
    padding: 3rem 0 2.6rem 5vw;
    font-size: 1.6rem;
    background: url(../images/nav-circle.png) 3vw center no-repeat !important;
  }
}

.nav-sp {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  position: fixed;
  right: 2vw;
  top: 5px;
  cursor: pointer;
}
/*# sourceMappingURL=base.css.map */

@media (min-width: 481px) and (max-width: 768px) {
  .header-nav {display: none;}
}

@media (max-width: 480px) {
  .header-nav {display: none;}
}

.app-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 769px) {
  .app-flex {
      flex-direction: row;
      justify-content: center;
      gap: 20px;
      margin-top: 10px;
  }
}
