@charset "UTF-8";

:root {
  --primary-black: #363636;
  --primary-darkblue: #3F535B;



  --color-lightblue: #b7ced8;
  --color-lightgray: #f5f5f5;
  --color-black: #363636;

  --bg-clr-primary: #fff;
  --txt-clr-primary: #363636;
  --view-padding-inline-pc: 30px;
  --view-padding-inline-sp: 4.4vw;
}



/*-------------------------------------------------
general
------------------------------------------------*/
html,body,div,iframe,h1,h2,h3,h4,p,a,address,em,img,small,strong,sup,i,dl,dt,dd,ol,ul,li,fieldset,form,label,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,figure,footer,header,nav,section {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  vertical-align: baseline;
  line-height: 1;
}
span {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  vertical-align: baseline;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100vh;
  background-color: var(--bg-clr-primary);
	font-size: 15px;
	font-family:
    'Noto Sans JP',
    'Helvetica Neue',
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  font-weight: normal;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  color: var(--txt-clr-primary);
  -webkit-text-size-adjust: 100%;
}

a,img,input,svg,
*:before,*:after {
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}
a:hover img,
a:hover input {
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}

a {
  color: var(--txt-clr-primary);
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: normal;
}

/* reCAPTCHAバッジ非表示 */
.grecaptcha-badge { visibility: hidden; }




/*-------------------------------------------------
a.link-txt
------------------------------------------------*/
a.link-txt {
  padding: 2px 0;
  position: relative;
  color: #0086e0;
}
a.link-txt::before {
  content: '';
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color:#0086e0;
  transition: transform .2s, bottom .2s;
  transform: scale(0, 1);
  transform-origin: left top;
}
a.link-txt:hover::before {
  transform: scale(1, 1);
  bottom: 0;
}


/*-------------------------------------------------
header
------------------------------------------------*/
header .header-inner {
  margin-inline: auto;
  padding-inline: var(--view-padding-inline-sp);
  padding-block-start: 26px;
  padding-block-end: 46px;
}

header .header-logo {
  text-align: center;
}
header .header-logo a {
  font-family: 'Quicksand';
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .18em;
}
/* header .header-desc {
  margin: 6px 0 0;
  font-family: 'Noto Sans JP';
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .06em;
} */

@media (width >= 520px) {
  header .header-inner {
    padding-block-start: 30px;
    padding-block-end: 60px;
  }
  header .header-logo a {
    font-size: 22px;
  }
}

@media (width >= 960px) {
  header .header-inner {
    padding-inline: var(--view-padding-inline-pc);
    padding-block-start: 40px;
    padding-block-end: 80px;
  }
  header .header-logo a {
    font-size: 24px;
  }
}



/*-------------------------------------------------
.breadcrumb
------------------------------------------------*/
.breadcrumb-wrap {
  margin-block-end: 30px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  overflow-y: hidden;
  overflow-x: scroll;
  word-break: keep-all;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.breadcrumb::-webkit-scrollbar {
  height: 4px;
}
.breadcrumb::-webkit-scrollbar-thumb {
  background: rgba(26, 26, 26, .1);
  border-radius: 2px;
}

.breadcrumb li {
  font-size: 12px;
}
.breadcrumb li:after {
  display: inline-block;
  font-family: 'Font Awesome 6 Free';
  content: '\f0da';
  font-weight: bold;
  padding: 0 .6em;
}
.breadcrumb li:last-child:after {
  content: '';
}


/*-------------------------------------------------
.h2-archive-ttl
------------------------------------------------*/
h2.h2-archive-ttl > span {
  display: inline-block;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  font-family: 'Quicksand';
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .06em;
}



/*-------------------------------------------------
.h2-fixed-ttl
------------------------------------------------*/
h2.h2-fixed-ttl {
  margin: 0 0 30px;
  font-family: 'Noto Sans JP';
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .14rem;
  line-height: 1.4;
}


/*-------------------------------------------------
.h3-fixed-ttl
------------------------------------------------*/
h3.h3-fixed-ttl {
  margin: 0 0 20px;
  padding: 16px;
  font-family: 'Noto Sans JP';
  font-weight: 500;
  font-size: 17px;
  letter-spacing: .14rem;
  background: repeating-linear-gradient(-45deg, #fff, #fff 10px,#f2f2f2 10px, #f2f2f2 20px);
  line-height: 1.4;
}


/*-------------------------------------------------
.mark-disc
------------------------------------------------*/
.mark-disc {
  margin: 1em 0 0;
  line-height: 1.8;
}
.mark-disc li {
  display: flex;
  align-items: baseline;
}
.mark-disc li + li {
  margin: 1em 0 0;
}
.mark-disc li::before {
  content: "・";
  margin: 0 .3em 0 0;
}


/*-------------------------------------------------
.container
------------------------------------------------*/
.container {
  container: container / inline-size;
  inline-size: min(1200px, 92%);
  margin-inline: auto;
}

.container main {
  container: main / inline-size;
}

.container aside {
  container: aside / inline-size;
  margin-block-start: 40px;
}

@container container (inline-size >= 540px) {
  .container aside {
    margin-block-start: 60px;
  }
}

@media (width >= 520px) {
}


@media (width >= 960px) {
  .container {
    display: grid;
    grid-template-columns: 1fr 280px;
    justify-content: space-between;
    column-gap: 60px;
  }
  .container aside {
    margin-block-start: 0;
  }
}


/*-------------------------------------------------
.container-fixed
------------------------------------------------*/
.container-fixed {
  margin: 20px 0 0;
}

.container-fixed main {
  padding: 30px 4.4vw;
  background-color: #fff;
}

.container-fixed aside {
  margin: 40px 0 0;
  padding: 0 4.4vw;
}



/*-------------------------------------------------
.pagenation
------------------------------------------------*/
.pagination {
  margin: 40px 0 0;
}

.pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pagination ul.page-numbers li:not(.next-prev-parent) {
  width: 34px;
  height: 40px;
  border-radius: 50%;
  transform: skew(-6deg);
}
.pagination ul.page-numbers li.current-parent {
  background-color: #363636;
  color: #fff;
}
.pagination ul.page-numbers li:not(.current-parent, .next-prev-parent) {
  border: 1px solid #363636;
}
.pagination ul.page-numbers li span,
.pagination ul.page-numbers li:not(.next-prev-parent) a {
  display: block;
  width: 100%;
  height: 100%;
  font-family: 'Quicksand';
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  line-height: 40px;
}
.pagination ul.page-numbers li em {
  display: inline-block;
  transform: skew(6deg);
}
.pagination ul.page-numbers li:not(.current-parent, .next-prev-parent) a em {
  transition: font-size .3s;
}
.pagination ul.page-numbers li:not(.current-parent, .next-prev-parent) a:hover em {
  font-size: 22px;
}
.pagination ul.page-numbers li a i {
  font-size: 22px;
}



/*-------------------------------------------------
footer
------------------------------------------------*/
footer {
  margin: 40px 0 0;
  padding: 16px 0;
  background-color: #1b1b1b;
}
footer .footer-inner {
  padding: 0 4.4vw;
}

footer nav {
  display: flex;
  justify-content: center;
}
footer nav ul {
  display: flex;
}
footer nav li + li {
  margin-left: 2em;
}
footer nav li a {
  color: #efefef;
  font-size: 13px;
  letter-spacing: .06em;
  text-indent: .06em;
}

footer small {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0;
  letter-spacing: .06em;
  text-indent: .06em;
}
footer small span {
  display: block;
  font-family: 'Quicksand';
  font-weight: 400;
  color: #efefef;
}
footer small span:nth-child(1) {
  margin: 0 .3em 0 0;
  font-size: 14px;
}
footer small span:nth-child(2) {
  font-size: 11px;
}


/*-------------------------------------------------
.pagetop
------------------------------------------------*/
.pagetop {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  position: fixed;
  right: 3vw;
  bottom: 16px;
  z-index: 100;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #1b1b1b;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}
.pagetop::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-bottom: -3px;
  border-top: solid 2px #1b1b1b;
  border-right: solid 2px #1b1b1b;
  transform: rotate(-45deg);
}
.pagetop:hover {
  transform: scale(1.2);
}






/*///////////////////////////////////////////////////////////////////////

tb 520〜959px

///////////////////////////////////////////////////////////////////////*/
@media (width >= 520px) {

/*-------------------------------------------------
.breadcrumb (tb)
------------------------------------------------*/
.breadcrumb-wrap {
  /* margin: 30px 0 0; */
}

.breadcrumb li {
  font-size: 13px;
}


/*-------------------------------------------------
.h2-fixed-ttl (tb)
------------------------------------------------*/
h2.h2-fixed-ttl {
  font-size: 22px;
}


/*-------------------------------------------------
.h3-fixed-ttl (tb)
------------------------------------------------*/
h3.h3-fixed-ttl {
  font-size: 18px;
}


/*-------------------------------------------------
footer (tb)
------------------------------------------------*/
footer {
  margin: 60px 0 0;
  padding: 20px 0;
}

footer .footer-inner {
  display: flex;
  justify-content: space-between;
}

footer nav {
  display: block;
  justify-content: flex-start;
}
footer nav li a {
  text-indent: 0;
}

footer small {
  margin: 0 40px 0 0;
  text-indent: 0;
}

footer small span:nth-child(1) {
  font-size: 15px;
}
footer small span:nth-child(2) {
  font-size: 12px;
}



/*-------------------------------------------------
.pagetop (tb)
------------------------------------------------*/
.pagetop {
  right: 3vw;
  bottom: 12px;
  width: 30px;
  height: 30px;
}
.pagetop::before {
  width: 7px;
  height: 7px;
  margin-bottom: -4px;
}

}





/*///////////////////////////////////////////////////////////////////////

pc 960px〜

///////////////////////////////////////////////////////////////////////*/
@media (width >= 960px) {


/*-------------------------------------------------
.breadcrumb (pc)
------------------------------------------------*/
.breadcrumb-wrap {
  /* max-width: 1240px; */
  /* margin: 30px auto 0; */
  /* padding: 0 20px; */
}


/*-------------------------------------------------
.h2-fixed-ttl (pc)
------------------------------------------------*/
h2.h2-fixed-ttl {
  font-size: 24px;
}


/*-------------------------------------------------
.h3-fixed-ttl (pc)
------------------------------------------------*/
h3.h3-fixed-ttl {
  font-size: 20px;
}



/*-------------------------------------------------
footer (pc)
------------------------------------------------*/
footer {
  margin: 100px 0 0;
}
footer .footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

footer small {
  margin: 0 60px 0 0;
}
footer small span:nth-child(1) {
  font-size: 16px;
}
footer small span:nth-child(2) {
  font-size: 13px;
}




}
