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

 リセット / font

=============================================================== */
* {
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 100%;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

header,
footer,
main,
aside,
nav,
section,
article {
  display: block;
}

address,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
dt,
dd,
p,
i {
  font-style: normal;
  margin: 0;
  padding: 0;
  cursor: default;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul,
ol,
li {
  list-style: none;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
  font-family: inherit;
  cursor: pointer;
}

a {
  color: inherit;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
}

img {
  position: relative;
  width: auto;
  max-width: 100%;
  height: auto;
  line-height: 0;
  vertical-align: bottom;
}

/* body 背景色 */
/* 文字色 */
@font-face {
  font-family: 'Noto sans CJK JP';
  src: url("/html/font/NotoSansCJKjp-Regular.woff2") format("woff2"), url("/html/font/NotoSansCJKjp-Regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: 'Noto sans CJK JP';
  src: url("/html/font/NotoSansCJKjp-Bold.woff2") format("woff2"), url("/html/font/NotoSansCJKjp-Bold.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: 'Berlin Sans FB Demi';
  src: url("/html/font/Berlin Sans FB Demi Bold.woff2") format("woff2"), url("/html/font/Berlin Sans FB Demi Bold.woff") format("woff");
  font-weight: normal;
}
/* ===============================================================

 plugin - common

=============================================================== */
/* ===============================================================

 common parts / template

=============================================================== */
/*===== parts =====*/
/* body 背景色 */
/* 文字色 */
/*======= title / text =======*/
.pagetitle {
  padding: 34px 0 40px;
  font-size: 32px;
  font-weight: normal;
  text-align: center;
}
.pagetitle span {
  display: block;
  margin-bottom: .5em;
  font-size: .45em;
}
@media (min-width: 768px) {
  .pagetitle {
    padding: 60px 0 80px;
    font-size: 38px;
  }
}

.maintitle {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .maintitle {
    font-size: 28px;
  }
}

.boxtitle {
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: normal;
  text-align: center;
  overflow: hidden;
}
.boxtitle span {
  position: relative;
  display: inline-block;
  padding: 0 16px;
}
.boxtitle span:before, .boxtitle span:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  display: inline-block;
  width: 120px;
  height: 1px;
  background-color: #961432;
}
.boxtitle span:before {
  left: 100%;
}
.boxtitle span:after {
  right: 100%;
}
@media (min-width: 768px) {
  .boxtitle {
    font-size: 24px;
  }
  .boxtitle span:before, .boxtitle span:after {
    width: 160px;
  }
}

.small {
  font-size: .8em;
}

.smaller {
  font-size: .65em;
}

.imgsupplement, .imgsupplement--right {
  margin-bottom: 0 !important;
  padding-left: 1em;
  font-size: .85em;
  font-weight: bold;
}
.imgsupplement--right {
  padding: 0;
  text-align: right;
}

.breaktext {
  word-break: break-all;
  text-align: justify;
  text-justify: inter-ideograph;
}

.centertext {
  text-align: center;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

/*======= btn =======*/
.btn, .btn--noarrow, .btn--small {
  position: relative;
  -webkit-display: flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 85%;
  max-width: 380px;
  padding: 10px;
  margin: 0 auto;
  background-color: #961432;
  color: #fff;
  transition: .35s;
}
.btn:after, .btn--noarrow:after, .btn--small:after {
  position: absolute;
  top: 50%;
  right: 26px;
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.btn--noarrow:after {
  content: none;
}
.btn--small {
  width: 60%;
  padding: 4px 10px;
  font-size: .85em;
}
.btn--small:after {
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (min-width: 768px) {
  .btn, .btn--noarrow, .btn--small {
    width: 65%;
  }
  .btn:hover, .btn--noarrow:hover, .btn--small:hover {
    background-color: rgba(150, 20, 50, 0.5);
  }
  .btn--small {
    padding: 4px 10px;
    width: 35%;
  }
}

/* more */
.morebtn {
  display: block;
  width: 5em;
  padding: 1px 0;
  margin: 14px 0 8px;
  background-color: #961432;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.morebtn:after {
  content: '>';
  margin-left: 5px;
  vertical-align: baseline;
}
.morebtn--left {
  margin-right: auto;
}
.morebtn--right {
  margin-left: auto;
}
.morebtn--center {
  margin: 14px auto 8px;
}

/* morebtnで開くコンテンツ */
.morecontent {
  display: none;
  padding-top: 10px;
}

/*======= list =======*/
/* 装飾無し */
.list__style0, .list__style1, .list__style2, .list__style3, .list__style4 {
  margin-bottom: 30px;
}
.list__style0:last-child, .list__style1:last-child, .list__style2:last-child, .list__style3:last-child, .list__style4:last-child {
  margin-bottom: 0;
}
.list__style0 li, .list__style1 li, .list__style2 li, .list__style3 li, .list__style4 li {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
  line-height: 1.5em;
}
.list__style0 li:last-child, .list__style1 li:last-child, .list__style2 li:last-child, .list__style3 li:last-child, .list__style4 li:last-child {
  margin-bottom: 0;
}
.list__style1 {
  /* 番号割り振り */
}
.list__style1 li {
  counter-increment: number;
  text-indent: -1.5em;
}
.list__style1 li:before {
  content: counter(number) ",";
  margin-right: .5em;
}
.list__style2 {
  /* 白丸装飾 */
}
.list__style2 li {
  text-indent: -1.5em;
}
.list__style2 li:before {
  content: '';
  display: inline-block;
  width: .5em;
  height: .5em;
  border-radius: 50%;
  margin-right: 1em;
  box-shadow: 0 0 4px 2px rgba(51, 51, 51, 0.5);
}
.list__style3 {
  /* 赤丸装飾 */
}
.list__style3 li {
  text-indent: -1.5em;
}
.list__style3 li:before {
  content: '';
  display: inline-block;
  width: .7em;
  height: .7em;
  border-radius: 50%;
  margin-right: .8em;
  background-color: #961432;
}
.list__style4 {
  /* 赤四角装飾 */
}
.list__style4 li {
  text-indent: -1.5em;
}
.list__style4 li:before {
  content: '';
  display: inline-block;
  width: .7em;
  height: .7em;
  margin-right: .8em;
  background-color: #961432;
}

/*======= scrollbtn =======*/
.scrollbtn {
  position: fixed;
  right: 40px;
  display: none;
  width: 56px;
  height: 56px;
  z-index: 1;
}
.scrollbtn__icon {
  -webkit-display: flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #961432;
  transition: .35s;
}
.scrollbtn__icon span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  margin-top: 7px;
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .scrollbtn:hover .scrollbtn__icon {
    opacity: .6;
  }
}
@media (max-width: 767px) {
  .scrollbtn {
    right: 20px;
    width: 46px;
    height: 46px;
  }
}

/*======= 自己紹介リスト =======*/
.description .description__title {
  padding: 0 0 10px 10px;
  border-left: 8px solid #961432;
  border-bottom: 1px solid #961432;
  margin-bottom: 7px;
  font-size: 1.23em;
}
.description .description__title span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: .58em;
}
.description .description__detail {
  padding-left: 1.23em;
  margin-bottom: 26px;
  line-height: 1.5em;
  word-break: break-all;
}
.description .description__detail:last-child {
  margin-bottom: 0;
}

/*======= 履歴リスト =======*/
.history, .history--changelog {
  display: block;
}
.history .history__date, .history--changelog .history__date {
  width: 100%;
  line-height: 1.5em;
}
.history .history__text, .history--changelog .history__text {
  width: 100%;
  padding-left: 1em;
  margin-bottom: 10px;
  line-height: 1.5em;
}
.history .history__text:last-child, .history--changelog .history__text:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .history, .history--changelog {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .history .history__date, .history--changelog .history__date {
    width: 6em;
  }
  .history .history__text, .history--changelog .history__text {
    width: calc(100% - 6em);
  }
  .history--changelog .history__date {
    width: 100%;
  }
  .history--changelog .history__text {
    width: 100%;
  }
}

/*======= 横並びbox =======*/
.rowbox, .rowbox__type01, .rowbox__type02 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.rowbox__type01 .rowbox__image {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
.rowbox__type01 .rowbox__text {
  width: 100%;
}
@media (min-width: 768px) {
  .rowbox__type01 {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .rowbox__type01 .rowbox__image {
    width: 35%;
  }
  .rowbox__type01 .rowbox__text {
    width: 65%;
    padding-right: 5%;
  }
}
.rowbox__type02 {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: inherit;
  align-items: inherit;
}
.rowbox__type02 .rowbox__item {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .rowbox__type02 .rowbox__item {
    width: calc((100% - 40px)/2);
  }
}

.imagetable {
  margin-bottom: 20px;
}
.imagetable dt {
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}
.imagetable dd img {
  width: 100%;
  margin-bottom: 10px;
}
.imagetable dd img:last-child {
  margin-bottom: 0;
}

/*======= 枠線ありbox =======*/
.borderbox, .borderbox--black {
  padding: 10px;
  border: 1px solid #961432;
  border-width: 1px 8px 1px 8px;
}
.borderbox--black {
  border: 1px solid #333;
}
@media (min-width: 768px) {
  .borderbox, .borderbox--black {
    padding: 10px 2em;
  }
}

/*======= 画像とテキストセットbox =======*/
.floatbox, .floatbox--right {
  margin-bottom: 3em;
}
.floatbox img, .floatbox--right img {
  width: 380px;
  margin-right: 16px;
  float: left;
}
.floatbox:last-child, .floatbox--right:last-child {
  margin-bottom: 0;
}
.floatbox:after, .floatbox--right:after {
  content: '';
  display: block;
  clear: both;
}
.floatbox--right img {
  float: right;
  margin: 0;
  margin-left: 16px;
}
@media (max-width: 767px) {
  .floatbox img, .floatbox--right img {
    width: 100%;
    margin: 0;
    float: none;
  }
}

/*======= ブログ記事一覧 =======*/
/* ブログ記事ボックス */
.archive .archive__title, .archive--style_box .archive__title, .archive--style_line .archive__title {
  color: #0a3c64;
  font-size: 1.1em;
}
.archive .archive__detail, .archive--style_box .archive__detail, .archive--style_line .archive__detail {
  width: 100%;
  overflow: hidden;
}
.archive .archive__date, .archive--style_box .archive__date, .archive--style_line .archive__date {
  margin-bottom: 0;
  color: #961432;
  font-size: 12px;
  letter-spacing: 1px;
}
.archive--style_box {
  border: 1px solid #961432;
}
.archive--style_box .archive__date {
  height: auto !important;
  margin-bottom: 10px;
}
.archive--style_box .archive__title {
  padding: 16px 16px;
  background-color: #961432;
  color: #fff;
}
.archive--style_box .archive__image {
  position: relative;
  width: 100%;
  height: 240px;
  margin-bottom: 10px;
  overflow: hidden;
}
.archive--style_box .archive__image img {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
.archive--style_box .archive__detail {
  padding: 10px 16px;
  text-align: center;
  overflow: hidden;
}
.archive--style_box .archive__detail p {
  width: 100%;
  height: 5em;
  line-height: 1.4em;
  text-align: left;
  overflow: hidden;
}
.archive--style_line {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid #961432;
  border-left: 8px solid #961432;
}
.archive--style_line .archive__image {
  position: relative;
  width: 80px;
  height: 80px;
  border: 1px solid #e5e6e7;
  margin-right: 20px;
  overflow: hidden;
}
.archive--style_line .archive__image img {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 120%;
  height: auto;
}
@media (min-width: 768px) {
  .archive--style_line .archive__image {
    width: 120px;
    height: 120px;
  }
}
.archive--style_line .archive__title {
  margin-bottom: .5em;
  line-height: 1.5em;
}
.archive--style_line .archive__text {
  line-height: 1.5em;
  height: 3em;
}

/* ブログ記事タイル */
.tilebox a {
  transition: .35s;
}
.tilebox a * {
  cursor: pointer;
}
@media (min-width: 768px) {
  .tilebox a:hover {
    opacity: .6;
  }
}
.tilebox .tilebox__item {
  display: block;
  margin-bottom: 40px;
}
.tilebox .tilebox__item--wrap {
  display: block;
}
.tilebox .tilebox__item--wrap a {
  display: block;
}
.tilebox .tilebox__item--wrap a:first-child {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .tilebox {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .tilebox:nth-child(odd) {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .tilebox .tilebox__item {
    width: calc(55% - 10px);
    margin-bottom: 0;
  }
  .tilebox .tilebox__item--wrap {
    width: calc(45% - 10px);
  }
  .tilebox .tilebox__item--wrap a {
    height: calc((100% - 20px) / 2);
  }
  .tilebox .tilebox__item--wrap a:first-child {
    margin-bottom: 20px;
  }
  .tilebox .tilebox__item--wrap a .archive--style_box {
    height: 100%;
  }
  .tilebox .tilebox__item--wrap a .archive--style_box .archive__detail p {
    height: 6.5em;
  }
}

/* ブログ記事リスト */
.bloglist .bloglist__item {
  margin-bottom: 40px;
}
.bloglist .bloglist__item:last-child {
  margin-bottom: 0;
}
.bloglist .bloglist__item a {
  display: block;
  transition: .35s;
}
.bloglist .bloglist__item a * {
  cursor: pointer;
}
@media (min-width: 768px) {
  .bloglist .bloglist__item a:hover {
    opacity: .5;
  }
}

/* ページャー */
.pager, .pager1, .pager2 {
  padding: 50px;
  margin-top: 50px;
}
.pager1 .pager__list {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.pager1 .pager__list li {
  position: relative;
  margin: 0 12px;
}
.pager1 .pager__list li:before {
  position: absolute;
  top: -1.5em;
  right: 50%;
  transform: translateX(50%);
  content: attr(data-num);
  font-size: 12px;
}
.pager1 .pager__list li a, .pager1 .pager__list li p {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #961432;
  transition: .35s;
}
.pager1 .pager__list li.next a, .pager1 .pager__list li.prev a {
  position: relative;
  width: 34px;
  height: 34px;
}
.pager1 .pager__list li.next a:before, .pager1 .pager__list li.prev a:before {
  position: absolute;
  top: 50%;
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.pager1 .pager__list li.prev a:before {
  right: calc(50% - 2px);
  transform: translate(50%, -50%) rotate(-135deg);
}
.pager1 .pager__list li.next a:before {
  right: calc(50% + 2px);
  transform: translate(50%, -50%) rotate(45deg);
}
.pager1 .pager__list li.disabled {
  opacity: .7;
}
.pager1 .pager__list li.disabled:before {
  color: #aaa;
}
.pager1 .pager__list li.disabled a, .pager1 .pager__list li.disabled p {
  background-color: #aaa;
}
@media (min-width: 768px) {
  .pager1 .pager__list li a:hover {
    opacity: .5;
  }
  .pager1 .pager__list li.disabled a:hover, .pager1 .pager__list li.disabled p:hover {
    opacity: 1;
  }
}
@media (max-width: 460px) {
  .pager1 .pager__list {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
  }
  .pager1 .pager__list li {
    margin: 0;
  }
}
.pager2 .pager__list {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.pager2 .pager__list li {
  display: none;
  margin: 0 12px;
}
.pager2 .pager__list li a, .pager2 .pager__list li p {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background-color: #961432;
}
.pager2 .pager__list li.first, .pager2 .pager__list li.last, .pager2 .pager__list li.prev, .pager2 .pager__list li.next {
  display: inline-block;
}
.pager2 .pager__list li.first a, .pager2 .pager__list li.last a {
  width: 86px;
}
.pager2 .pager__list li.prev a, .pager2 .pager__list li.next a {
  width: 66px;
}
.pager2 .pager__list li.text {
  display: inline-block;
  white-space: pre;
}
.pager2 .pager__list li.disabled {
  opacity: .5;
}
.pager2 .pager__list li.disabled p {
  background-color: #aaa;
}
@media (min-width: 768px) {
  .pager2 .pager__list li {
    display: inline-block;
  }
  .pager2 .pager__list li a {
    transition: .35s;
  }
  .pager2 .pager__list li a:hover {
    opacity: .5;
  }
  .pager2 .pager__list li.first, .pager2 .pager__list li.last {
    display: none;
  }
  .pager2 .pager__list li.text {
    display: none;
  }
  .pager2 .pager__list li.disabled {
    opacity: .5;
  }
  .pager2 .pager__list li.disabled p {
    background-color: #aaa;
  }
}
@media (max-width: 480px) {
  .pager2 .pager__list {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .pager2 .pager__list li {
    margin: 0;
  }
  .pager2 .pager__list li.first a, .pager2 .pager__list li.last a {
    width: 68px;
  }
  .pager2 .pager__list li.prev a, .pager2 .pager__list li.next a {
    width: 54px;
  }
}
@media (max-width: 360px) {
  .pager2 .pager__list li.first a, .pager2 .pager__list li.last a {
    width: 50px;
  }
  .pager2 .pager__list li.prev a, .pager2 .pager__list li.next a {
    width: 48px;
  }
}
@media (max-width: 680px) {
  .pager, .pager1, .pager2 {
    padding: 50px 6px;
  }
}

/*===== template =====*/
/* body 背景色 */
/* 文字色 */
/*===== common =====*/
body {
  position: relative;
  overflow-x: hidden;
  font-family: 'Noto sans CJK JP', sans-serif;
  color: #333;
}
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .is--sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .is--pc {
    display: none !important;
  }
}

/* inview animation */
/*===== header =====*/
/* body 背景色 */
/* 文字色 */
.header {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding: 10px;
  background-color: #961432;
  color: #fff;
  z-index: 100;
  transition: .8s;
}
.header .inner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
}
.header__box {
  width: 100%;
}
.headerlogo a {
  display: inline-block;
  max-width: calc(100% - 50px);
}
@media (max-width: 767px) {
  .headerlogo a img {
    width: auto;
    height: 38px;
  }
}
@media (min-width: 768px) {
  .header {
    padding: 10px 16px;
  }
  .header .inner {
    display: block;
  }
  .header__box {
    margin-top: 10px;
  }
  .header__box:first-child {
    margin-top: 0;
  }
  .headerlogo a {
    max-width: 100%;
  }
}
.headernav {
  transition: .8s;
}
.headernav__list {
  display: block;
}
.headernav__list__item a {
  display: block;
  padding: 0 0 2px;
  margin: 0 8px;
  white-space: pre;
  font-size: .9em;
}
.headernav__btn {
  -webkit-display: flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: 36px;
  height: 36px;
}
.headernav__btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: .35s;
}
.headernav__btn span:before, .headernav__btn span:after {
  position: absolute;
  right: 0;
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: .35s;
}
.headernav__btn span:before {
  top: -8px;
}
.headernav__btn span:after {
  bottom: -8px;
}
.headernav__btn.open span {
  background-color: transparent;
}
.headernav__btn.open span:before {
  top: 0;
  transform: rotate(45deg);
}
.headernav__btn.open span:after {
  bottom: 0;
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .headernav__btn {
    display: none;
  }
}
@media (min-width: 768px) {
  .headernav__list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
  }
  .headernav__list__item a {
    position: relative;
    display: inline-block;
  }
  .headernav__list__item a:after {
    position: absolute;
    bottom: -1px;
    right: 50%;
    transform: translateX(50%);
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: .35s;
  }
  .headernav__list__item a:hover:after {
    width: 100%;
  }
  .nav_language {
     margin-left: 15px;
  }
  .nav_language:before {
    content: "|";
  }
}
@media (max-width: 767px) {
  .headernav {
    position: absolute;
    top: 70%;
    right: 0;
    width: 100%;
    max-height: 100vh;
    padding-bottom: 40px;
    background-color: #e5e6e7;
    overflow: auto;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
  }
  .headernav.open {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
  .headernav__list__item {
    border-bottom: 2px solid #c9ccd2;
  }
  .headernav__list__item a {
    padding: 16px 10px;
    color: #333;
  }
  .nav_language {
     background-color: #f7f6f5;
  }
  .nav_language a {
     margin-left: 20px;
  }
}

/*===== main =====*/
/* body 背景色 */
/* 文字色 */
/* main */
.main {
  width: 100%;
  padding: 39px 0 80px;
  overflow: hidden;
}
.main__block {
  width: 100%;
  max-width: 930px;
  padding: 0 10px;
  margin: 0 auto 120px;
}
.main__block:last-child {
  margin-bottom: 0;
}
.main__block__item {
  width: 100%;
  padding-top: 80px;
}
.main__block__item:first-child {
  padding-top: 0;
}
.main p {
  line-height: 2.2em;
  margin-bottom: 3em;
}
.main p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .main {
    padding-top: 56px;
  }
  .main p {
    margin-bottom: 2em;
  }
}

/*===== footer =====*/
/* body 背景色 */
/* 文字色 */
.footer {
  width: 100%;
  background-color: #6e0a28;
  color: #fff;
}
.footer__box {
  width: 100%;
  padding: 10px 16px;
}
.footernav__list {
  padding: 20px 0 8px;
}
.footernav__list__item {
  padding: 0 1.1em;
  margin-bottom: 10px;
}
.footernav__list__item a {
  position: relative;
  font-size: 16px;
}
.footer .copyright {
  background-color: #961432;
  font-size: 10px;
  text-align: right;
  line-height: 1.5em;
}
@media (min-width: 768px) {
  .footernav__list {
    -webkit-display: flex;
    display: flex;
  }
  .footernav__list__item a:after {
    position: absolute;
    bottom: -1px;
    right: 50%;
    transform: translateX(50%);
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: .35s;
  }
  .footernav__list__item a:hover:after {
    width: 100%;
  }
  .footer .copyright {
    font-size: 13px;
  }
}

/*# sourceMappingURL=common.css.map */
