@charset "UTF-8";
/******************************************************************

StyleSheet: ベーススタイル

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

body {
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #707070;
}

#global-container {
  min-width: 330px;
}
#archive .content__wrap a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.main-wrapper {
  color: #707070;
  max-width: 1030px;
  margin: 0 auto;
  padding-bottom: 166px;
}
@media screen and (min-width: 768px) {
  .main-wrapper {
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 113px;
  }
}

.wrap {
  margin: 0 30px auto;
}
@media screen and (min-width: 768px) {
  .wrap {
    width: 100%;
    margin: 0 auto;
  }
}

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

a {
  display: block;
  color: #707070;
}
a:hover {
  opacity: 0.7;
}

/********************************
 共通クラス
*********************************/
.main-ttl {
  font-size: 24px;
  display: flex;
  background-color: #E6ECF2;
  height: 70px;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .main-ttl {
    font-size: 18px;
    height: 50px;
  }
}

.m_ttl {
  font-size: 26px;
  display: flex;
  height: 40px;
  align-items: center;
  border-left: 7px solid #BE1F29;
  padding-left: 22px;
}
@media screen and (min-width: 768px) {
  .m_ttl {
    font-size: 20px;
  }
}

/********************************
 余白
*********************************/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-140 {
  margin-bottom: 140px;
}

/* margin-right */
.mr-10 {
  margin-right: 10px;
}

.mr-30 {
  margin-right: 30px;
}

/********************************
 ディスプレイ用
*********************************/
.lg-flex {
  display: none;
}
@media screen and (min-width: 1024px) {
  .lg-flex {
    display: flex;
  }
}

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

@media screen and (min-width: 1024px) {
  .lg-none {
    display: none;
  }
}

.md-flex {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .md-flex {
    display: flex !important;
  }
}

@media screen and (min-width: 768px) {
  .md-none {
    display: none !important;
  }
}

.md-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .md-block {
    display: block;
  }
}

@media screen and (min-width: 480px) {
  .sm-none {
    display: none;
  }
}

.sm-block {
  display: none;
}
@media screen and (min-width: 480px) {
  .sm-block {
    display: block;
  }
}

.br-layout {
  display: none;
}
@media screen and (min-width: 768px) {
  .br-layout {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .br-layout {
    display: none;
  }
}

/********************************
 共通クラス
*********************************/
.flex-row {
  display: flex;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

/* font-weight */
.fw-bold {
  font-weight: 700;
}

.fw-medium {
  font-weight: 500;
}

.fw-light {
  font-weight: 300;
}

/********************************
 微調整
*********************************/
.ls-100 {
  letter-spacing: -0.5px;
}
@media screen and (min-width: 480px) {
  .ls-100 {
    letter-spacing: normal;
  }
}

.ls-200 {
  letter-spacing: -1px;
}
@media screen and (min-width: 480px) {
  .ls-200 {
    letter-spacing: normal;
  }
}

.ls-300 {
  letter-spacing: -1.5px;
}
@media screen and (min-width: 480px) {
  .ls-300 {
    letter-spacing: normal;
  }
}

@media screen and (min-width: 1024px) {
  .ls-400 {
    letter-spacing: -1px;
  }
}

.breadcrumb {
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "serif";
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    font-size: 12px;
  }
}
.breadcrumb.archive .breadcrumb__inner {
  overflow-x: hidden;
}
.breadcrumb ul {
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  letter-spacing: 0;
  width: -moz-max-content;
  width: max-content;
}
.breadcrumb__inner {
  max-width: 1030px;
  overflow-x: scroll;
}
@media screen and (min-width: 768px) {
  .breadcrumb__inner {
    padding: 0 15px;
    overflow-x: hidden;
  }
}

.hero {
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "serif";
  background-color: #E6ECF2;
}
.hero__inner {
  max-width: 1030px;
  display: flex;
  height: 100px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .hero__inner {
    padding: 0 15px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__inner {
    height: 120px;
  }
}
.hero__inner h2 {
  font-weight: 300;
  font-size: 28px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .aside {
    margin-top: 30px;
    max-width: 130px;
    width: 25%;
  }
}
@media screen and (min-width: 1024px) {
  .aside {
    font-size: 15px;
    max-width: 150px;
  }
}
.aside h2 {
  align-items: center;
  background-color: #F5F5F5;
  border-bottom: 1px solid #B4B4B4;
  display: flex;
  font-size: 26px;
  height: 80px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .aside h2 {
    font-size: 15px;
    height: 50px;
  }
}
.aside ul {
  border-bottom: 1px solid #B4B4B4;
  height: 80px;
}
.aside ul:nth-last-of-type(1) {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .aside ul {
    height: 50px;
  }
}
.aside li {
  font-size: 26px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .aside li {
    font-size: 15px;
  }
}
.aside li:nth-child(1) {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 3px;
  max-width: 100px;
  width: 30%;
}
@media screen and (min-width: 768px) {
  .aside li:nth-child(1) {
    font-size: 20px;
  }
}
.aside li:nth-child(1) a {
  color: #BE1F29;
  justify-content: center;
}
.aside li:nth-child(2) {
  width: 100%;
}
.aside li.current {
  font-weight: bold;
}
.aside a {
  align-items: center;
  display: flex;
  height: 100%;
}
.aside__inner {
  border: 1px solid #B4B4B4;
}

#archive {
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "serif";
}
#archive .content {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  #archive .content {
    font-size: 16px;
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  #archive .content {
    width: 100%;
    max-width: 820px;
  }
}
#archive .content h2 {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #archive .content h2 {
    margin-bottom: 0;
  }
}
#archive .content h3 {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  #archive .content h3 {
    margin-bottom: 8px;
  }
}
#archive .content p {
  line-height: 1.7;
}
#archive .content p.m_ttl {
  margin-bottom: 20px;
}
#archive .content span {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  #archive .content span {
    font-size: 14px;
  }
}
#archive .content span:nth-child(1) {
  margin-right: 15px;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  #archive .content span:nth-child(1) {
    margin-right: 10px;
    font-size: 13px;
  }
}
#archive .content span:nth-child(2) {
  border: 1px solid #333;
  font-size: 18px;
  display: flex;
  width: 100px;
  height: 30px;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 480px) {
  #archive .content span:nth-child(2) {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  #archive .content span:nth-child(2) {
    width: 60px;
    height: 20px;
    font-size: 11px;
  }
}
#archive .content__inner {
  padding: 30px 0 0;
}
@media screen and (min-width: 768px) {
  #archive .content__inner {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  #archive .content__wrapper {
    display: flex;
    justify-content: space-between;
  }
}
#archive .content__case {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  #archive .content__case {
    width: 48%;
  }
}
#archive .content__box {
  padding: 30px 0;
  border-width: 2px;
  color: #707070;
  /* これによりcurrentColorが#707070を参照します */
  background-image: repeating-linear-gradient(to right, currentColor, currentColor 2px, transparent 2px, transparent 8px);
  background-repeat: repeat-x;
  /* 横方向に繰り返し */
  background-position: bottom;
  /* 中央に位置させる */
  background-size: 10px 2px;
  /* 全体のパターンのサイズ（線分 + 間隔、線分の幅） */
}
@media screen and (min-width: 768px) {
  #archive .content__box {
    padding: 18px 0;
    color: #707070;
    /* これによりcurrentColorが#707070を参照します */
    border-width: 1px;
    background-image: repeating-linear-gradient(to right, currentColor, currentColor 1px, transparent 1px, transparent 5px);
    background-repeat: repeat-x;
    /* 横方向に繰り返し */
    background-position: bottom;
    background-size: 6px 1px;
    /* 全体のパターンのサイズ（線分 + 間隔、線分の幅） */
  }
}
@media screen and (min-width: 768px) {
  #archive .content__box.info {
    padding: 20px 0;
  }
}
#archive .content__wrap {
  align-items: stretch;
  /* 子要素の高さをコンテナに合わせる */
  justify-content: space-between;
}
#archive .content__txt {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  #archive .content__txt {
    width: 90%;
    max-width: 342px;
  }
}
#archive .content__txt p {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  #archive .content__txt p {
    font-size: 15px;
  }
}
@media screen and (min-width: 1024px) {
  #archive .content__txt p {
    line-height: 1.7;
  }
}
#archive .content__link {
  width: 10%;
}
#archive a .content__link {
  color: #BE1F29;
  font-size: 27px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  #archive a .content__link  {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
	body {
	    font-size: 18px;
	}
	.hero__inner {
	    height: auto;
	    padding: 10px 0;
	}
	.aside ul {
	    height: auto;
	    padding: 10px 0;
	}
	.aside li {
	    font-size: 1em;
	    height: auto;
	}
	#archive .content {
	    font-size: 16px;
	}
	.m_ttl {
	    font-size: 1.4em;
	}
	#archive .content__txt p {
	    font-size: 18px;
	}
	#archive .content span:nth-child(1) {
	    font-size: 18px;
	}
	#single .content h3 {
	    font-size: 18px;
	}
	#single .content p {
	    font-size: 18px;
	}
}