/* ##############################################################################

    COMMON

############################################################################## */

html {
  height: 100%;
  overflow-y: scroll;
}
body {
  font: 16px/1.231 "a-otf-ryumin-pr6n", "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 300;
  font-feature-settings: "palt";
  line-height: 1.8;
  letter-spacing: 0.15em;
  *font-size: small;
  *font: x-small;
  color: #101521;
  -webkit-font-smoothing: antialiased;
}
ul,
ol {
  list-style: none;
}
small {
  font-size: 86%;
}
a {
  color: #353535;
  text-decoration: none;
  transition: all 0.4s ease-out;
  outline: none;
}
a:hover {
  text-decoration: none;
}
.txt-link {
  color: #fff;
  text-decoration: underline;
}
.link {
  color: #e50000;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    -webkit-text-size-adjust: none;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}

/* layout
**************************************** */

/* --- inner --- */
.inner {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}
.inner-sm {
  max-width: 800px;
}
.inner-lg {
  max-width: 1150px;
}
.inner-xl {
  max-width: 80%;
}

/* --- section_pdg --- */
.section_pdg {
  padding-top: 80px;
  padding-bottom: 80px;
}
.section_pdg-sm {
  padding-top: 64px;
  padding-bottom: 64px;
}
.section_pdg-lg {
  padding-top: 120px;
  padding-bottom: 120px;
}
.section_pdg-news {
  padding-top: 16px;
  padding-bottom: 64px;
}

/* --- float --- */
.flt-rgt {
  float: right;
}
.flt-lft {
  float: left;
}

/* --- position --- */
.pos_rel {
  position: relative;
  z-index: 0;
}

/* --- margin --- */
.mgn-btm8 {
  margin-bottom: 8px;
}
.mgn-btm16 {
  margin-bottom: 16px;
}
.mgn-btm24 {
  margin-bottom: 24px;
}
.mgn-btm32 {
  margin-bottom: 32px;
}
.mgn-btm40 {
  margin-bottom: 40px;
}
.mgn-btm48 {
  margin-bottom: 48px;
}
.mgn-btm56 {
  margin-bottom: 56px;
}
.mgn-btm64 {
  margin-bottom: 64px;
}
.mgn-btm72 {
  margin-bottom: 72px;
}
.mgn-btm80 {
  margin-bottom: 80px;
}

/* --- pc or sp --- */
.pc-none,
.pc-none-inline,
.pc-none-table,
.pc-none-flex {
  display: none;
}
.sp-none {
  display: block;
}
.sp-none-inline {
  display: inline;
}
.sp-none-table {
  display: table;
}
.sp-none-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .inner {
    width: 90%;
  }
  .inner-xl {
    max-width: 95%;
  }
  .section_pdg,
  .section_pdg-sm,
  .section_pdg-lg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mgn-btm16 {
    margin-bottom: 8px;
  }
  .mgn-btm24 {
    margin-bottom: 16px;
  }
  .mgn-btm32 {
    margin-bottom: 16px;
  }
  .mgn-btm40 {
    margin-bottom: 24px;
  }
  .mgn-btm48 {
    margin-bottom: 24px;
  }
  .mgn-btm56 {
    margin-bottom: 32px;
  }
  .mgn-btm64 {
    margin-bottom: 32px;
  }
  .mgn-btm72 {
    margin-bottom: 40px;
  }
  .mgn-btm80 {
    margin-bottom: 40px;
  }
  .sp-mgn-btm16 {
    margin-bottom: 16px;
  }
  .sp-none,
  .sp-none-inline,
  .sp-none-table,
  .sp-none-flex {
    display: none;
  }
  .pc-none {
    display: block;
  }
  .pc-none-inline {
    display: inline;
  }
  .pc-none-table {
    display: table;
  }
  .pc-none-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

/* flex
**************************************** */

/* --- ブロック要素 --- */
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* --- インライン要素 --- */
.flex-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* --- 逆向き --- */
.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* --- 縦並び --- */
.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* --- 水平方向揃え --- */
.flex-j-start {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex-j-end {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-j-ctr {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-j-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-j-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* --- 垂直方向揃え --- */
.flex-a-start {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-a-end {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-a-ctr {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-a-baseline {
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.flex-a-stretch {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* --- 子要素の折り返し設定 --- */
.flex-c-nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex-c-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* --- 子要素の複数行設定 --- */
.flex-c-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
.flex-c-start {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.flex-c-start {
  -webkit-align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.flex-c-end {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.flex-c-ctr {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.flex-c-baseline {
  -webkit-align-content: baseline;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
}
.flex-c-stretch {
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

/* --- ざっくりflexレイアウト --- */
.flex-col2,
.flex-col3,
.flex-col4 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-col2 > * {
  width: 48.5%;
  margin-right: 3%;
  margin-bottom: 3%;
}
.flex-col2 > *:nth-child(even) {
  margin-right: 0;
}
.flex-col3 > * {
  width: 31.33%;
  margin-right: 3%;
  margin-bottom: 3%;
}
.flex-col3 > *:nth-child(3n + 3) {
  margin-right: 0;
}
.flex-col4 > * {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.flex-col4 > *:nth-child(4n + 4) {
  margin-right: 0;
}
.flex-col2.no_margin > * {
  width: 50%;
  margin-right: 0;
  margin-bottom: 0;
}
.flex-col2.no_margin .txtarea {
  max-width: 440px;
  width: 90%;
}
@media all and (-ms-high-contrast: none) {
  .flex-col2.no_margin .txtarea {
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  /* --- 縦並び - sp --- */
  .flex-sp-block {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-sp-block.flex-col2 > *,
  .flex-sp-block.flex-col3 > * {
    width: 100%;
    margin-right: 0;
  }

  /* --- ざっくりflexレイアウト - sp --- */
  .flex-sp-col2 > *,
  .flex-sp-col2.flex-col3 > *:nth-child(3n + 3) {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-sp-col2 > *:nth-child(even) {
    margin-right: 0;
  }
  .flex-sp-col3 > *,
  .flex-sp-col3.flex-col4 > *:nth-child(4n + 4) {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-sp-col3 > *:nth-child(3n + 3) {
    margin-right: 0;
  }
}

/* bg
**************************************** */
.bg-gry {
  background-color: #f4f4f4;
}

/* page_ttl
**************************************** */
.page_ttl {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  background-color: #000;
}
.page_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-size: cover;
  background-image: url(../images/stroan_news_img.jpg);
}
.page_ttl h2 {
  position: relative;
  text-align: center;
  line-height: 1.65;
  color: #fff;
  text-shadow: 0 0 5px #000, 0 0 10px #000;
}
.page_ttl-jp,
.page_ttl-en {
  display: block;
}
.page_ttl-jp {
  font-size: 300%;
}
.page_ttl-jp .en {
  text-transform: uppercase;
}
.page_ttl-en {
  font-size: 120%;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .page_ttl {
    height: 110px;
    padding-top: 4px;
    margin-top: 60px;
  }
  .page_ttl-jp {
    font-size: 200%;
    line-height: 1.3;
    margin-bottom: 8px;
  }
}

/* title & heading
**************************************** */

/* --- title --- */
.section_ttl {
  text-align: center;
  padding-left: 5%;
  padding-right: 5%;
}
.section_ttl .en,
.section_ttl .jp {
  font-family: adobe-caslon-pro, serif;
  font-weight: 400;
  font-size: 270%;
  letter-spacing: 0.05em;
  display: inline-block;
}
.section_ttl .en.hide,
.section_ttl .jp.hide {
  display: none;
}

.section_ttl .en.font200,
.section_ttl .jp.font200 {
  font-size: 200%;
}
.section_ttl .jp.font200.gothic {
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo",
    "ＭＳ Ｐゴシック", sans-serif;
  font-weight: bold;
}

/* --- heading --- */
.heading-1,
.heading-2,
.heading-3,
.heading-4 {
  letter-spacing: 0.15em;
}
.heading-1 {
  font-size: 218%;
}
.heading-2 {
  font-size: 160%;
}
.heading-3 {
  font-size: 134%;
}
.heading-4 {
  font-size: 120%;
}

@media only screen and (max-width: 768px) {
  .section_ttl .en {
    font-size: 7vw;
    line-height: 1.35;
  }
  .section_ttl .jp {
    font-size: 7vw;
  }
  .heading-1 {
    font-size: 158%;
    line-height: 1.5;
  }
  .section_ttl .en.font200,
  .section_ttl .jp.font200 {
    font-size: 5.5vw;
  }
}

/* txt
**************************************** */
.txt-jp {
  letter-spacing: 0.15em;
  line-height: 1.85;
}
.txt-en {
  letter-spacing: 0.095em;
}
.txt-sm {
  font-size: 93%;
}
.txt-xsm {
  font-size: 86%;
}
.txt-ctr {
  text-align: center;
}
.txt-rgt {
  text-align: right;
}
.txt-gray {
  color: #777777;
}
.txt-attention {
  font-size: 88%;
  color: #999;
}
.txt-attention.font-black {
  color: #101521;
}
.txt-attention-kome {
  position: relative;
  padding-left: 1.4em;
}
.txt-attention-kome::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.vertical-a-mid {
  vertical-align: middle;
}
.capitalize {
  text-transform: capitalize;
}
@media only screen and (max-width: 768px) {
  .sp-txt-ctr {
    text-align: center;
  }
}

/* table & list
**************************************** */
table {
  width: 100%;
}

/* --- table --- */
.table th,
.table td {
  padding: 8px 0;
}
.table th {
  text-align: left;
}

/* --- table_line --- */
.table_line th,
.table_line td {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
  color: #3c473f;
  text-align: center;
  font-size: 94%;
}
.table_line th {
  background-color: #d2d2d2;
  border: 1px solid #888;
}
.table_line thead th {
  background-color: #2d3a30;
  border: 1px solid #2d3a30;
  border-right-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.table_line thead th:last-child {
  border-right-color: #2d3a30;
  border-left-color: rgba(255, 255, 255, 0.5);
}
.table_line td {
  border: 1px solid #888;
  font-size: 93%;
}
.accessibility-table th,
.accessibility-table td {
  padding: 8px;
  border: 1px solid #aaa;
}
.accessibility-table thead th {
  background-color: #000;
  color: #fff;
  font-size: 90%;
  letter-spacing: 0.025em;
}
.accessibility-table tbody th {
  background-color: #ddd;
}

/* --- list ---- */
.list {
  list-style-type: none;
}
.list li:not(:last-child) {
  margin-bottom: 6px;
}
.list li {
  position: relative;
  padding-left: 1.4em;
}
.list-disc li::before,
.list-square li::before,
.list-circle li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 6px;
  background-color: #2d3a30;
}
/* 数字付きリスト */
.list-num li {
  counter-increment: title;
  text-indent: -2em;
  padding-left: 2em;
}
.list-num li::before {
  content: counter(title);
  background-color: #2d3a30;
  border-radius: 50%;
  padding: 3px 9px;
  margin-right: 6px;
  color: #fff;
  font-family: adobe-garamond-pro, serif;
}
/* 白丸付きリスト */
.list-circle li::before {
  border: 1px solid #2d3a30;
  background-color: transparent;
}
/* 四角付きリスト */
.list-square li::before {
  border-radius: 0;
  background-color: #2d3a30;
}
/* 入れ子のスタイル */
.list li ul {
  margin-top: 16px;
}
.list li ul li::before {
  width: 10px;
  height: 10px;
  top: 0.55em;
}

/* --- dlリスト --- */
.list-dl {
  position: relative;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid #bfbfbf;
}
.list-dl dt {
  position: absolute;
  width: 200px;
  padding-top: calc(16px + 1em);
  color: #3c473f;
  font-weight: 700;
  text-align: center;
  font-size: 94%;
}
.list-dl dd {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 180px;
  padding-right: 56px;
  border-bottom: 1px solid #bfbfbf;
}

@media only screen and (max-width: 767px) {
  .table th,
  .table td {
    display: block;
  }
}

/* btn
**************************************** */
.btn {
  display: inline-block;
  padding: 6px 16px 10px;
  background-color: #c41141;
  color: #fff;
  font-size: 100%;
  min-width: 400px;
}
.btn:hover {
  background-color: #e20d46;
}
.btn i {
  vertical-align: baseline;
  margin-right: 8px;
}
.btn span {
  vertical-align: middle;
}
.back_to_top {
  margin-top: 16px;
}

@media only screen and (max-width: 768px) {
  .btn {
    min-width: 90%;
  }
}

/* font
**************************************** */
.font-en {
  font-family: adobe-caslon-pro, serif;
  font-weight: 400;
}

/* txt
**************************************** */
.color-wh {
  color: #fff;
}
.color-red {
  color: #c41141;
}

.hide {
  display: none;
}

/* ##############################################################################

    HEADER

############################################################################## */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  z-index: 48;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  transform: translateY(0);
}
.header.scrollin {
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.95);
}
.header.show {
  transform: translateY(-100%);
}
.header.active {
  z-index: 999;
}
#gnav_btn,
.header.active #gnav_btn {
  display: flex;
  width: 84px;
  margin-top: 4px;
  cursor: pointer;
  color: #fff;
  z-index: 999;
  font-size: 70%;
}
.header.active #gnav_btn {
  color: #fff !important;
}
#gnav_btn .gnav_btn--line {
  position: relative;
  margin: auto;
  display: block;
  width: 25px;
  height: 17px;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  opacity: 1;
}
#gnav_btn:hover .gnav_btn--line {
  opacity: 0.5;
}
#gnav_btn .gnav_btn--line span,
.header.active #gnav_btn .gnav_btn--line span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.header.active #gnav_btn .gnav_btn--line span {
  background-color: #fff !important;
}
#gnav_btn .gnav_btn--line span:nth-child(1) {
  top: 0;
}
#gnav_btn .gnav_btn--line span:nth-child(2) {
  top: 7px;
}
#gnav_btn .gnav_btn--line span:nth-child(3) {
  bottom: 0;
}
#gnav_btn.close span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
#gnav_btn.close span:nth-child(2) {
  opacity: 0;
}
#gnav_btn.close span:nth-child(3) {
  bottom: 8px;
  transform: rotate(-45deg);
}
.header.scrollin #gnav_btn {
  color: #101521;
}
.header.scrollin #gnav_btn .gnav_btn--line span {
  background-color: #101521;
}
#gnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background-color: #101521;
  padding: 6vw;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  overflow-y: scroll;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
#gnav::-webkit-scrollbar {
  width: 4px;
  background-color: #fefefe;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2);
}
/*スクロールバーの軌道*/
#gnav::-webkit-scrollbar-track {
  border-radius: 8px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
/*スクロールバーの動く部分*/
#gnav::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}
#gnav.active {
  opacity: 1;
  pointer-events: auto;
}
.gnav--list {
  margin-bottom: 74px;
}
.gnav--list li {
  position: relative;
  text-align: center;
}
.gnav--list li:not(:last-child) {
  margin-bottom: 50px;
}
.gnav--list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  margin: auto;
  width: 40px;
  height: 1px;
  background-color: #fff;
}
.gnav--list li a {
  display: inline-block;
  color: #fff;
  opacity: 1;
}
.gnav--list li a:hover {
  opacity: 0.5;
}
.gnav--list li a span {
  font-size: 164%;
}
.gnav--contact {
  width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.gnav--contact li {
  width: 50%;
}
.gnav--contact li:first-child {
  border-right: 1px solid #fff;
}
.gnav--contact li a,
.gnav--contact li span {
  display: block;
  color: #fff;
  font-size: 182%;
}

#header--language {
  position: relative;
  display: flex;
  z-index: 20;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
#header--language li {
  position: relative;
  padding: 0 6px;
  cursor: pointer;
  font-size: 70%;
  color: #fff;
  font-weight: 500;
  font-family: "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo",
    "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
#header--language li:first-child {
  margin-right: 8px;
}
#header--language li:hover,
#header--language li.select {
  border-bottom: 2px solid;
}
.header.scrollin #header--language li {
  color: #101521;
}

#header--sns li:not(:last-child) {
  margin-right: 14px;
}
#header--sns li img {
  vertical-align: sub;
}
#header--sns li a::before {
  content: "";
  display: inline-block;
  background-size: cover;
  vertical-align: sub;
}
#header--sns .facebook a::before {
  width: 24px;
  height: 21px;
  background-image: url(../images/common/icon_facebook_wh.png);
}
.header.scrollin #header--sns .facebook a::before {
  background-image: url(../images/common/icon_facebook.png);
}
#header--sns .twitter a::before {
  width: 20px;
  height: 20px;
  background-image: url(../images/common/icon_x_wh.svg);
}
.header.scrollin #header--sns .twitter a::before {
  background-image: url(../images/common/icon_x.svg);
}
#header--sns li a:hover {
  opacity: 0.5;
}
#header--sns .youtube a::before {
  width: 27px;
  height: 22px;
  background-image: url(../images/common/icon_youtube_wh.png);
}
.header.scrollin #header--sns .youtube a::before {
  background-image: url(../images/common/icon_youtube.png);
}
#header--sns li a:hover {
  opacity: 0.5;
}

@media all and (-ms-high-contrast: none) {
  #gnav_btn,
  #header--sns,
  #header--language {
    position: absolute;
  }
  #gnav_btn {
    top: 18px;
    right: 2%;
  }
  #header--sns {
    top: 17px;
    left: 2%;
  }
  #header--language {
    top: 19px;
    left: 50%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  .header {
    padding: 19px 5% 17px 2%;
    background-color: rgba(255, 255, 255, 0.9);
    justify-content: space-between;
  }
  #gnav_btn,
  .header.active #gnav_btn {
    width: auto;
    margin-top: 4px;
    margin-left: 34px;
  }
  #gnav {
    padding: 12vw;
    height: 100vh;
  }
  #gnav_btn .gnav_btn--line {
    width: 34px;
    height: 30px;
  }
  #gnav_btn .gnav_btn--line span {
    background-color: #101521;
  }
  #gnav_btn .gnav_btn--line span:nth-child(2) {
    top: 11px;
  }
  #gnav_btn .gnav_btn--line span:nth-child(3) {
    bottom: 5px;
  }
  .gnav--list li:not(:last-child) {
    margin-bottom: 40px;
  }
  #gnav_btn.close span:nth-child(1) {
    top: 14px;
  }
  #gnav_btn.close span:nth-child(3) {
    bottom: 14px;
  }
  .gnav--list li a strong {
    font-size: 120%;
  }
  .gnav--list li a small {
    font-size: 90%;
    opacity: 0.7;
  }
  #header--sns .facebook a::before {
    width: 25px;
    height: 23px;
    background-image: url(../images/common/icon_facebook.png);
  }
  #header--sns .twitter a::before {
    width: 20px;
    height: 20px;
    background-image: url(../images/common/icon_x.svg);
    transform: translateY(1px);
  }
  #header--sns .youtube a::before {
    transform: translateY(-1px);
    background-image: url(../images/common/icon_youtube.png);
  }
  #header--sns li.twitter {
    margin-right: 12px;
  }
  #header--language li {
    padding: 4px 2px 0 2px;
    margin-bottom: 6px;
    font-size: 4.8vw;
    color: #101521;
  }

  .gnav--list li a span {
    font-size: 114%;
  }
}

/* ##############################################################################

    FOOTER

############################################################################## */
.footer {
  padding: 40px 0;
  background-color: #101521;
}
.footer--links {
  margin-bottom: 24px;
}
.footer--links li {
  margin: 0 12px 8px;
}
.footer--links li a,
#foot_gnav_btn,
.copyright {
  color: #fff;
}
.footer--links li a:hover,
#foot_gnav_btn:hover {
  opacity: 0.7;
}

.pagetop {
  position: fixed;
  right: 10px;
  bottom: 20px;
  text-align: center;
  line-height: 1.4;
  width: 90px;
  height: 90px;
  font-size: 84%;
  padding: 19px 0 0;
}
.pagetop::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(-45deg);
  margin: 0 auto;
}

/* ##############################################################################

    INDEX

############################################################################## */

.anker {
  pointer-events: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  background-image: url(../images/hero.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero .video {
  width: 100vw;
  height: 56.3vw;
}
@media all and (-ms-high-contrast: none) {
  .hero {
    width: 100%;
    height: 55.8vw;
  }
  .hero .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.hero--catch {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  width: 30%;
  height: auto;
  z-index: 20;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 10px #000, 0 0 20px #000;
  z-index: 98;
}
#play_btn {
  position: absolute;
  width: 34px;
  height: 26px;
  left: 20px;
  bottom: 30px;
  z-index: 49;
  display: flex;
  cursor: pointer;
  background-image: url(../images/off.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  opacity: 0.8;
}
#play_btn.on {
  background-image: url(../images/on.png);
}
#play_btn li.select,
#play_btn li:hover {
  opacity: 1;
}
.hero--catch strong {
  font-size: 630%;
  letter-spacing: 0.09em;
  line-height: 1.2;
}
.hero--catch small {
  font-size: 114%;
}

.section_libon {
  height: 118px;
  background-position: center;
}
/*.section_libon .deco {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
  }*/
.section_libon .section_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 18px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
  text-shadow: 0 0 10px #000, 0 0 10px #000, 0 0 8px #000;
}
.section_libon .section_ttl.font-black {
  color: #000;
  text-shadow: initial;
}
.section_libon .section_ttl .en {
  line-height: 1.2;
}

.stroan_top iframe,
.stroan_movie iframe,
.stroan_loan iframe {
  width: 100%;
  height: 204px;
}

.stroan_message .section_libon {
  background-image: url(../images/stroan_news_img.jpg);
}
.stroan_message .txt {
  flex: 1;
  margin-left: 24px;
}
.stroan_message .message_col {
  width: 40%;
}
.stroan_message .message_col .img {
  width: 260px;
  height: 320px;
}
.stroan_message .message_col img {
  object-fit: scale-down;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1530px) {
  .stroan_message .message_col {
    width: calc(100% / 2 - (24px * 1 / 2));
  }
  .stroan_message .inner-xl {
    max-width: 90%;
  }
}
.stroan_message .message_col:first-child {
  margin-right: 24px;
}
@media only screen and (max-width: 1100px) {
  .stroan_message .message_col {
    display: block;
  }
  .stroan_message .message_col .img {
    margin-bottom: 24px;
    text-align: center;
  }
  .stroan_message .txt {
    margin-left: 0;
  }
}
.stroan_message .heading-2 {
  line-height: 1.5;
}
.stroan_message .modal_btn {
  width: 68%;
  margin: 0 auto;
  background-color: #c41141;
  color: #fff;
  padding: 8px 24px;
  letter-spacing: 0.08em;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.stroan_message .modal_btn:hover {
  background-color: #e20d46;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 10;
}
.modal--in {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 1260px;
  width: 95%;
  height: 71vh;
  background-color: #fff;
  z-index: 10;
}
.modal--scroll {
  overflow-y: scroll;
  height: 100%;
  padding: 60px 80px 60px 60px;
}
.modal .close {
  position: absolute;
  top: 0;
  right: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  color: #000;
  z-index: 10;
  font-size: 260%;
  text-align: center;
  cursor: pointer;
  margin: 0;
  transition: all 0.4s ease-out;
}
.modal .close:hover {
  opacity: 0.7;
}
.modal .stroan {
  margin-right: 3%;
}
.modal .seiryu {
  margin-right: 0;
}
.stroan_message .txt img {
  vertical-align: middle;
}

.stroan_shinsain .imgarea {
  margin-top: 0;
  margin-left: 8px;
  margin-bottom: 0;
}
.stroan_shinsain .imgarea li {
  flex: 1;
  list-style-type: none;
  padding-top: 0;
  margin-left: 10px;
}
.stroan_shinsain .imgarea li img {
  margin-top: 0;
  margin-bottom: 8px;
}
.stroan_shinsain .heading-2 {
  padding: 0;
}
.stroan_shinsain .heading-2::before {
  display: none;
}

.stroan_loan {
  overflow-x: hidden;
}
.stroan_loan .section_libon {
  background-image: url(../images/stroan_loan_img.jpg);
}
#stroan_loan--list {
  position: relative;
  width: 900px !important;
  max-width: 100% !important;
  margin: 0 auto 68px;
}
#stroan_loan--list .slick-list {
  overflow: visible;
}
#stroan_loan--list .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  margin: auto;
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 0;
  outline: 0;
}
#stroan_loan--list .slick-arrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
#stroan_loan--list .slick-prev {
  left: -16px;
}
#stroan_loan--list .slick-next {
  right: -16px;
}
#stroan_loan--list .slick-prev::before {
  transform: rotate(135deg);
}
#stroan_loan--list .slick-next::before {
  transform: rotate(-45deg);
}
#stroan_loan--list .item {
  margin: 0 30px;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2), 0 0 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #eaeaea;
}
#stroan_loan--list .item p.sp-none-flex {
  align-items: center;
}
#stroan_loan--list .item p.sp-none-flex > * {
  width: 47%;
  height: auto;
}
#stroan_loan--list .txt {
  flex: 1;
  padding: 32px 8px 28px;
}
#stroan_loan--list .name {
  text-align: center;
}
#stroan_loan--list .name .num {
  display: block;
  margin-bottom: 16px;
  font-size: 200%;
  line-height: 1;
  font-weight: 800;
}
#stroan_loan--list .name h3 strong {
  font-size: 100%;
  letter-spacing: 0.18em;
}
#stroan_loan--list .name h3 strong,
#stroan_loan--list .name h3 small {
  display: block;
}
#stroan_loan--list .name h3 strong.hide,
#stroan_loan--list .name h3 small.hide {
  display: none;
}
#stroan_loan--list .name h3 small {
  font-size: 88%;
  font-weight: normal;
}
#stroan_loan--list .item img {
  margin-left: auto;
  margin-right: auto;
}
.stroan_loan .section_loan--sato li {
  position: relative;
}
.stroan_loan iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.stroan_app .section_libon {
  background-image: url(../images/stroan_news_img.jpg);
}
.stroan_app .btn {
  min-width: 100%;
}
.stroan_app .btn small {
  font-size: 88%;
}
.stroan_app--download > * {
  padding: 28px 24px 32px;
  border-radius: 4px;
  background-color: #e7eaef;
  width: 32%;
  margin-right: 2%;
}
.stroan_app--download .heading-2 {
  line-height: 1.2;
}
.stroan_app--download .heading-2 small {
  font-size: 60%;
}
.download_file a {
  display: block;
  padding: 24px;
  text-align: center;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 6px;
}
.download_file a:hover {
  opacity: 0.5;
}
.stroan_app .heading-4 {
  background-color: #eee;
  padding: 6px 12px;
}
.stroan_app .mce-content-body h2 {
  font-size: 120%;
}
.stroan_app .modal--in .heading-2 > * {
  display: block;
}
.stroan_app .modal--in .heading-2 small {
  font-size: 68%;
}
.stroan_app .modal--in .heading-2 strong {
  font-size: 120%;
}
.stroan_app .modal_btn {
  cursor: pointer;
  line-height: 1.25;
}
.stroan_app .modal_btn:hover {
  opacity: 0.7;
}

.stroan_news #twitter-widget-0 {
  border: 1px solid #ddd !important;
  border-radius: 8px;
}

.stroan_activities .section_libon {
  background-image: url(../images/stroan_salamanca_img.jpg);
}
.stroan_member .section_libon {
  background-image: url(../images/stroan_member_img.jpg);
}
.stroan_movie--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  text-align: left;
  margin: 0 auto;
}
.stroan_movie--btn i {
  margin-right: 28px;
}

.stroan_movie .flex .btn {
  min-width: 100%;
  text-align: center;
}

#contact {
  background-color: #d8d8d8;
}

.stroan_salamanca .inner {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.salamanca_hall {
  background-color: #aaa;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 400%;
}
.fb_iframe_widget.sp-none {
  display: block !important;
}
.fb_iframe_widget.pc-none {
  display: none !important;
}
#twitter-widget-0 {
  border: 1px solid #ddd !important;
  border-radius: 8px;
}

@media only screen and (max-width: 768px) {
  .hero {
    margin-top: 60px;
  }
  .hero--catch {
    width: 54%;
  }
  .hero--catch strong {
    font-size: 14vw;
  }
  .hero .video {
    width: 100%;
  }
  #play_btn {
    top: auto;
    left: 5%;
    bottom: 18px;
    width: 26px;
    height: 20px;
    background-size: cover;
  }
  #play_btn li {
    margin-right: 8px;
  }
  .section_libon {
    height: 90px;
    background-size: cover;
  }
  .section_libon .section_ttl .en {
    line-height: 1.25;
  }
  .scroll_frame {
    overflow-x: scroll;
    padding: 0 5%;
  }
  .stroan_top iframe,
  .stroan_movie iframe,
  .stroan_loan iframe {
    height: 155px;
  }
  .scroll_frame ul {
    width: 830px;
    padding-right: 20px;
  }

  .modal--in {
    display: block;
    top: 84px;
    bottom: auto;
    width: 95%;
    height: 70vh;
  }
  .modal--scroll {
    padding: 30px 20px 40px 20px;
  }
  .modal .close {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
  }
  .modal .stroan,
  .modal .seiryu {
    width: 100%;
  }
  .modal .stroan {
    margin-right: 0;
  }

  .stroan_message .heading-2 {
    line-height: 1.4;
    font-size: 3.2vw;
    letter-spacing: 0.08em;
  }
  .stroan_message .heading-2.en {
    font-size: 2.4vw;
  }
  .stroan_message .modal_btn {
    width: 100%;
  }
  #stroan_loan--list {
    width: 320px !important;
    margin: 0 auto 32px;
  }
  #stroan_loan--list .slick-arrow {
    background-color: #101521;
    width: 46px;
    height: 60px;
  }
  #stroan_loan--list .slick-arrow::before {
    width: 20px;
    height: 20px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  #stroan_loan--list .slick-next {
    right: -25px;
  }
  #stroan_loan--list .slick-prev {
    left: -25px;
  }
  #stroan_loan--list .slick-next::before {
    margin-left: 4px;
  }
  #stroan_loan--list .slick-prev::before {
    margin-left: 12px;
  }
  #stroan_loan--list .item {
    width: 300px !important;
    margin: 0 10px;
  }
  #stroan_loan--list .txt {
    padding: 24px 8px 16px;
  }
  #stroan_loan--list .name {
    font-size: 100%;
  }
  #stroan_loan--list .name h3 strong {
    margin-bottom: 2px;
    font-size: 94%;
    letter-spacing: 0.08em;
  }
  #stroan_loan--list p {
    margin-bottom: 12px;
    font-size: 87%;
    text-align: center;
  }
  #stroan_loan--list p + h3 {
    text-align: center;
  }
  #stroan_loan--list p.pc-none-flex {
    margin-top: 14px;
    align-items: center;
  }
  #stroan_loan--list p.pc-none-flex > * {
    width: 43%;
    margin: 0 6px;
  }
  #section_loan--more {
    width: 90%;
    margin: auto;
  }
  .stroan_loan iframe {
    position: static;
    height: 240px;
  }
  .stroan_app .table_default th {
    width: 70px;
    line-height: 1.5;
  }
  .stroan_app--download > * {
    padding: 28px 16px 14px;
  }
  .stroan_app--download .heading-2 {
    margin-bottom: 12px;
  }
  .stroan_movie .scroll_frame {
    margin-bottom: 32px;
  }
  .stroan_movie--btn {
    display: block;
    text-align: center;
  }
  .stroan_movie--btn i {
    display: block;
    margin-right: 0;
    margin-bottom: 16px;
  }
  .stroan_salamanca .flex {
    justify-content: center;
  }
  .fb_iframe_widget.sp-none {
    display: none !important;
  }
  .fb_iframe_widget.pc-none {
    display: flex !important;
    justify-content: center;
    margin-bottom: 24px;
  }
  .contact--tel {
    width: 100%;
    margin: 0 auto 32px;
    padding: 20px 0;
  }
  .contact--tel a {
    display: inline-block;
  }

  .stroan_shinsain .imgarea {
    margin-left: 0;
  }
  .stroan_shinsain .imgarea li:first-child {
    margin-left: 0;
  }

  .stroan_message .message_col .img {
    width: auto;
    height: auto;
  }
}
@media only screen and (max-width: 320px) {
  #stroan_loan--list .slick-next {
    right: 0;
  }
  #stroan_loan--list .slick-prev {
    left: 0;
  }
}
/* --- instagram --- */
.home_instagram {
  width: 30%;
}
.home_instagram .ttl,
.home_facebook .ttl {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: bold;
  font-size: 18px;
  border-bottom: solid 1px #ccc;
}
.home_sns-icon {
  display: block;
}
.home_sns-icon a {
  display: flex;
  align-items: center;
  width: 240px;
  height: 80px;
  padding: 16px;
  background-color: #fff;
  border: solid 1px #ccc;
  border-radius: 4px;
  font-weight: bold;
  font-size: 18px;
}
.home_sns-icon a:not(:last-child) {
  margin-bottom: 20px;
}
.home_sns-icon a {
  width: 100%;
}
.home_sns-icon a img {
  width: 40px;
  height: 40px;
  margin-right: 16px;
}
.insta_icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
@media screen and (max-width: 896px) {
  .home_instagram,
  .home_facebook {
    width: 100%;
  }
  .home_sns-icon {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 0;
  }
  .home_sns-icon a:not(:last-child) {
    margin-right: 20px;
  }
}
/* stroanメンバー member
 ############################### */
.member--bnr:hover {
  opacity: 0.7;
}
.member--bnr-quartet {
  display: block;
  margin: 0 auto 16px;
  text-align: center;
}
.member--bnr-wrap {
  margin: 0 auto 32px;
  justify-content: space-between;
}
.member--bnr-wrap a {
  width: calc(100% / 3 - 12px);
}
.member--bnr-wrap a img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .member--bnr-wrap {
    width: 100%;
  }
  .member--bnr-quartet {
    margin: 0 auto 8px;
  }
  .member--bnr-wrap a {
    width: calc(100% / 3 - 6px);
  }
}

/* ##############################################################################

    ARCHIVE

############################################################################## */

.post {
  position: relative;
}
.post--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.post--link[href="javascript:void(0);"]::before,
.nolink .post--link {
  pointer-events: none;
}
.nolink .post--link:hover {
  cursor: default;
}

/* --- taglist --- */
.taglist {
  position: relative;
  background-color: #eee;
  padding: 24px 32px;
  max-width: 860px;
  margin: 0 auto 40px;
}
.taglist--ttl {
  border-left: 3px solid #444;
  padding-left: 11px;
  margin-bottom: 8px;
}
.taglist .taglist--wrap a {
  position: relative;
  padding-left: 12px;
  margin-right: 16px;
  font-size: 86%;
}
.taglist .taglist--wrap a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  height: 1px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #9e9ea0;
  margin: auto;
  transition: all 0.3s;
}
.taglist a:hover {
  color: #c41141;
}
.taglist a:hover::before {
  border-left: 6px solid #c41141;
}
.taglist--remove {
  position: absolute;
  top: 21px;
  right: 22px;
  border: 1px solid #ccc;
  padding: 2px 10px 2px 12px;
  font-size: 86%;
  letter-spacing: 0.1em;
}
.remove.icon {
  color: #000;
  position: absolute;
  margin-left: 3px;
  margin-top: 10px;
}
.taglist--remove:hover {
  border-color: #c41141;
}

@media screen and (max-width: 767px) {
  .taglist {
    padding: 16px 24px;
  }
  .taglist--ttl {
    margin-bottom: 4px;
  }
  .taglist--remove {
    top: 14px;
    right: 12px;
  }
}

/* --- wp-pagenavi --- */
.wp-pagenavi {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi a,
.wp-pagenavi .current {
  position: relative;
  display: inline-block;
  vertical-align: top;
  background-color: #101521;
  width: 48px;
  height: 48px;
  line-height: 46px;
  border-radius: 50%;
  margin: 0 3px 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  color: #fff;
}
.wp-pagenavi a:hover {
  background-color: #43506d;
}
.wp-pagenavi .current {
  background-color: #dddddc;
  color: #101521;
}

/* --- archive-pulldown --- */
.archive-pulldown {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  z-index: 10;
}
.archive-pulldown .archive_list {
  position: relative;
  font-size: 92%;
}
.archive-pulldown .archive_list:not(:last-child) {
  margin-right: 24px;
}
.archive-pulldown .archive_list a {
  display: block;
  padding: 2px 16px;
  text-align: left;
}
.archive-pulldown .archive_list a:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.archive-pulldown .archive_list a:hover {
  background-color: #000;
  color: #fff;
}
.archive-pulldown .archive_list--label {
  margin-right: 8px;
}
.archive-pulldown .archive_list--btn {
  cursor: pointer;
  border: none;
  outline: none;
  appearance: none;
  padding: 8px 54px 8px 32px;
  background-color: #fff;
  border: 1px solid #ccc;
}
.archive-pulldown .archive_list--btn::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 10px;
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  transition: 0.2s ease-out;
  transform-origin: 50% 50%;
}
.archive-pulldown .active .archive_list--btn::after {
  top: 14px;
  transform: rotate(225deg);
}
.archive-pulldown .archive_list--menu {
  position: absolute;
  z-index: 1;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-out;
}
.archive-pulldown .active .archive_list--menu {
  visibility: visible;
  opacity: 1;
}

/* --- news --- */
.news_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.post {
  width: calc(100% / 3 - 24px);
  margin-bottom: 28px;
}
.post:not(:nth-child(3n)) {
  margin-right: 36px;
}
.post:first-child {
  margin-left: auto;
}
.post:last-child {
  margin-right: auto;
}
.post .post--thumb {
  position: relative;
  width: 100%;
  margin-bottom: 8px;
  background-size: cover;
  background-position: center;
  transition: all 0.3s;
  /* background-color: #9a9a9a; */
  overflow: hidden;
}
.post .post--thumb::before {
  content: "";
  display: block;
  padding-top: 75%; /* 高さを幅の75%に固定 */
}
.post .post--thumb--img-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -ms-filter: blur(6px);
  filter: blur(6px);
  opacity: 0.4;
}
.post .post--thumb--img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: "object-fit: contain;"; /* ie11 polyfill */
  background-color: rgba(234, 163, 142, 0.16);
}
.post .post--ttl {
  margin-bottom: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.post .post--date {
  font-size: 86%;
}
.post--tags {
  position: relative;
  z-index: 2;
}
.post--tags span {
  margin-right: 4px;
  margin-bottom: 4px;
}
.post--tags a {
  display: inline-block;
  color: #c41141;
  margin-right: 4px;
  margin-bottom: 4px;
  background-color: #f7dde4;
  padding: 0 10px;
  font-size: 80%;
}
.post--tags a:last-child {
  margin-right: 0;
}
.post:not(.nolink):hover .post--thumb {
  opacity: 0.7;
}
.single-member .post--tags {
  margin-top: 6px;
}
.post .post--link[href="javascript:void(0);"]:hover {
  opacity: 1;
}

/* トップのみ */
.home .post--thumb.release_top {
  border: 2px solid #cf3c64;
}
.stroan_member .post--thumb.release_top {
  border: none;
}

/* --- member --- */
.archive-member .member--ob_ttl {
  background-color: #eee;
  padding: 6px 12px;
  font-size: 120%;
  margin-bottom: 41px;
}
.archive-member .section_ttl {
  margin-bottom: 8px;
}
.archive-member .section_ttl .en,
.archive-member .section_ttl .jp {
  font-size: 200%;
}
.post-member--num_cat {
  position: relative;
  bottom: 5px;
  left: 9;
  font-size: 76%;
  background-color: #464646;
  display: inline-block;
  padding: 0 6px 0 19px;
  position: absolute;
  color: #fff;
}
.member_tag .section_ttl .en,
.member_tag .section_ttl .jp {
  font-size: 240%;
  text-transform: capitalize;
}

@media only screen and (max-width: 768px) {
  .post {
    margin-bottom: 16px;
  }
  .news_list .post {
    display: block;
    padding: 0;
    width: calc(100% / 2 - 8px);
  }
  .post:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .post:not(:nth-child(2n)) {
    margin-right: 16px;
  }
  .news_list .post--date {
    margin-right: 18px;
  }
  .post .post--ttl {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 93%;
    line-height: 1.5;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
  }
  .post .post-member--inst {
    font-size: 73%;
    letter-spacing: 0.08em;
    line-height: 1.5;
    margin-bottom: 4px;
  }

  /* member */
  .stroan_member .post {
    width: calc(100% / 2 - 8px);
    margin-right: 16px;
  }
  .stroan_member .post:nth-child(2n) {
    margin-right: 0;
  }
  .stroan_member .post .post--ttl {
    -webkit-line-clamp: 3;
    line-height: 1.5;
  }
  .stroan_member .post .post-member--inst {
    font-size: 73%;
    line-height: 1.5;
  }
  .post-member--num_cat {
    font-size: 68%;
  }
}

/* ##############################################################################

    SINGLE

############################################################################## */

.news--info .post--date {
  margin-bottom: 8px;
}
.news--info .heading-1 {
  text-align: left;
}
.eyecatch-youtube {
  width: 100%;
  height: 450px;
  margin-bottom: 32px;
}
.eyecatch {
  text-align: center;
}
.eyecatch.ratio_h {
  width: 100%;
  height: 600px;
  margin-bottom: 24px;
}
.eyecatch.ratio_h img {
  object-fit: contain;
  font-family: "object-fit: contain;"; /* ie11 polyfill */
  width: 100%;
  height: 100%;
}

/* --- member --- */
.member--info {
  background-color: #f2f2f2;
  padding: 12px;
  margin-bottom: 24px;
}
.single-member .heading-2 {
  text-align: center;
}
.single-member .heading-4 {
  font-size: 114%;
}

@media screen and (max-width: 767px) {
  .news--info .heading-1 {
    font-size: 126%;
  }
  .eyecatch-youtube {
    height: 220px;
  }
  .eyecatch.ratio_h {
    height: 400px;
  }
}

/* ##############################################################################

    FORMY

############################################################################## */
#formy_form {
  background-color: #fff;
  padding: 40px 4vw 56px;
}
#formy_form table {
  width: 100%;
}
#formy_form th,
#formy_form td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: solid 1px #eee;
}
#formy_form th {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
  width: 34%;
}
#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form table textarea {
  width: 100%;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  vertical-align: bottom;
}
#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form select,
#formy_form textarea {
  margin: 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  font: inherit;
  font-size: 100%;
}
#formy_form textarea {
  height: 100px;
}
#formy_form select {
  height: 40px;
}
#formy_form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#formy_form .formy_other_link_wrap {
  display: flex;
  flex-direction: column-reverse;
}
#formy_form #formy_other_link {
  line-height: 1.65;
  padding-left: 13px;
}
#formy_form input:hover {
  opacity: 0.7;
}
#formy_form textarea:hover {
  opacity: 0.7;
}
#formy_form input:focus {
  outline: none;
}
#formy_form .parsley-validated {
  background-color: #eee;
}
#formy_form .parsley-error {
  background-color: #fee;
}
#formy_form .parsley-success {
  background-color: #fff;
}
.help_text {
  font-size: 85%;
}
.hidden_help {
  display: none;
}
.formy_privacy div {
  overflow-y: scroll;
  height: 140px;
  border: solid 1px #ccc;
  font-size: 85%;
  padding: 8px 16px;
}
.requiredIcon {
  background: #e50000;
  color: #fff;
  margin: 0 0 0 1em;
  font-size: 70%;
  padding: 2px 5px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  float: right;
}
#formy_btn {
  padding-top: 32px;
  text-align: center;
}
#formy_btn input {
  min-width: 220px;
  padding: 16px 32px;
  margin-right: 4px;
  margin-left: 4px;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
#formy_form ul li input[type="radio"],
#formy_form ul li input[type="checkbox"] {
  display: none !important;
}
#formy_form ul li label {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 8px 0 40px;
  cursor: pointer;
}
#formy_form ul li label:hover {
  opacity: 0.7;
}
#formy_form ul li label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #788b93;
  left: 16px;
  top: 12px;
}
#formy_form ul li input[type="radio"] + label::before {
  border-radius: 10px;
}
#formy_form ul li input[type="radio"]:checked + label,
#formy_form ul li input[type="checkbox"]:checked + label {
  color: #e75f5f;
  font-weight: bold;
}
#formy_form ul li input[type="radio"]:checked + label::before,
#formy_form ul li input[type="checkbox"]:checked + label::before {
  border-color: #e75f5f;
}
#formy_form ul li input[type="radio"]:checked + label::after,
#formy_form ul li input[type="checkbox"]:checked + label::after {
  content: "";
  width: 10px;
  height: 18px;
  top: 4px;
  left: 20px;
  border-right: 2px solid #e75f5f;
  border-bottom: 2px solid #e75f5f;
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.formy_confirm {
  background-color: #ddd;
}
.formy_submit_disabled {
  background-color: #737373;
}
#formy_btn .formy_submit_disabled:hover {
  opacity: 1;
  cursor: default;
}
.autoConfirmBack {
  background-color: #aaa;
}
.formy_send {
  background-color: #c41141;
}
#total_required {
  padding: 16px;
  color: #e50000;
  text-align: center;
}
.formy_error {
  color: #e50000 !important;
}
@media only screen and (max-width: 767px) {
  #formy_form {
    padding: 20px;
  }
  #formy_form th,
  #formy_form td {
    display: block;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
  #formy_form th {
    border-bottom: none;
    padding-bottom: 6px;
    white-space: normal;
    font-weight: bold;
  }
  #formy_form td {
    padding-top: 0;
  }
  #formy_btn {
    padding-top: 8px;
  }
  #formy_btn input {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    background-size: contain;
    background-position: center;
  }
}
