@charset "UTF-8";
/********************************
# 目次

 - general
 - component
   → ヘッダ・フッタ・グロナビ **以外** の、各ページで共用するパーツをここに置く
   → WordPressネイティブなCSS＆プラグインのCSSもここに置く
   → 接頭辞は 'c-'
   → 書く場所はこの位置をキープする事
 - header
 - gnav
 - main （各ページ共通）
 - footer
 - home トップページ

*********************************/
/********************************
# 規約

 - ブロック相当部分とエレメント相当部分の区切りはアンダースコア2つ
 - エレメントとモディファイの区切りはハイフン2つ
 - 単語の区切りはハイフン1つ
 - 要素・クラス名の後に半角スペース1
 - 要素・クラス名毎に改行
   （→現在はscssのコンパイラ任せになっているので後で整形）
 - プロパティの前にはスペ4
   （→現在はscssのコンパイラ任せでスぺ2になっているので後で整形）
 - プロパティ毎に改行
 - メディアクエリはセレクタ毎に分けて書く

----
# 汎用クラス

 - 接頭辞は'u-'
 - utility.css で設定している各クラスを参照
 - font-size -> fz 等の略称はemmetで採用されているものを使用しています

----
# JS用クラス

 - 接頭辞は'js-'
 - slick等、IDを指定して動かすもの専用

----
# ステートメント用クラス

接頭辞は'is_'

.is_active
クリックされた状態・現在選択されている状態を表現

注意：.is_activeには直接スタイルを当てない（スタイル汚染の原因になる）
BAD
.is_active {
    font-weight: bold;
}
GOOD
.hogehoge.is_active {
    font-weight: bold;
}
*********************************/
/********************************
general
*********************************/
*,
*:before,
*:after {
  /**** 要素の幅にpadding,borderを含めなくなる ****/
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", "Yu Gothic Medium", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  width: 100%;
  font-size: 100%;
  line-height: 1.63;
}

body {
  width: 100%;
}

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

/********************************
setting 共通設定
*********************************/
/**レスポンシブ**/
@media screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
}
/**SPブラウザ幅追従**/
/*SP基準幅*/
.c-center {
  text-align: center;
}

html {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 4.2666666667vw;
  }
}

a {
  text-decoration: none;
  color: inherit;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
a:hover {
  opacity: 0.75;
}
@media screen and (max-width: 750px) {
  a:hover {
    opacity: 1;
  }
}

li {
  list-style: none;
}

::-webkit-input-placeholder {
  color: #cccccc;
}

::-moz-placeholder {
  color: #cccccc;
}

:-ms-input-placeholder {
  color: #cccccc;
}

::-ms-input-placeholder {
  color: #cccccc;
}

::placeholder {
  color: #cccccc;
}

/********************************
component 全ページ共通部品があればこちらに入れる
*********************************/
.breadcrumb {
  max-width: 1125px;
  margin: 45px auto 60px auto;
}
@media screen and (max-width: 1180px) {
  .breadcrumb {
    width: 92%;
  }
}
@media screen and (max-width: 750px) {
  .breadcrumb {
    margin: 6.6666666667vw 0 5.3333333333vw 4vw;
  }
}
.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumb li {
  font-weight: bold;
}
.breadcrumb .layer2::before,
.breadcrumb .layer3::before {
  content: url(../img/arrow-gray.png);
  margin: 0 10px;
}
@media screen and (max-width: 750px) {
  .breadcrumb .layer2::before,
  .breadcrumb .layer3::before {
    content: url(../img/arrow-gray-sp.png);
    margin: 0 2vw;
  }
}

.page-title {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 2.5rem;
  border-bottom: 2px solid;
  padding-bottom: 10px;
  margin: 0 auto 70px auto;
  max-width: 1125px;
  width: 100%;
  line-height: 50px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1180px) {
  .page-title {
    width: 97%;
  }
}
@media screen and (max-width: 750px) {
  .page-title {
    padding: 0 0 1.3333333333vw 4vw;
    margin-bottom: 9.3333333333vw;
    line-height: 10.6666666667vw;
    font-size: 2rem;
  }
}

.pagination {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.pagination .nav-links {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
@media screen and (max-width: 750px) {
  .pagination .nav-links {
    -webkit-column-gap: 1.3333333333vw;
       -moz-column-gap: 1.3333333333vw;
            column-gap: 1.3333333333vw;
  }
}
.pagination .page-numbers {
  width: 30px;
  height: 30px;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #a1a694;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .pagination .page-numbers {
    width: 8vw;
    height: 8vw;
  }
}
.pagination .page-numbers:not(.prev, .next) {
  padding: 1px 0 0 1px;
}
@media screen and (max-width: 750px) {
  .pagination .page-numbers:not(.prev, .next) {
    padding-top: 0.5333333333vw;
  }
}
.pagination .page-numbers img {
  width: 8px;
}
@media screen and (max-width: 750px) {
  .pagination .page-numbers img {
    width: 2.1333333333vw;
  }
}
.pagination .current {
  background: #a1a694;
  color: white;
}
.pagination .prev {
  margin-right: 5px;
}
@media screen and (max-width: 750px) {
  .pagination .prev {
    margin-right: 1.3333333333vw;
  }
}
.pagination .next {
  margin-left: 5px;
}
@media screen and (max-width: 750px) {
  .pagination .next {
    margin-left: 1.3333333333vw;
  }
}

/********************************
header
*********************************/
/*PC*/
.pc-header {
  height: 154px;
}
.pc-header .main-header {
  z-index: 10;
  background: white;
  position: absolute;
  top: 0;
  width: 100%;
  height: 154px;
}
.pc-header .top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 25px 0;
}
.pc-header .top .logo {
  margin: 0;
  width: 198px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.pc-header .top .logo h1 {
  line-height: 28px;
}
@media screen and (max-width: 930px) {
  .pc-header .top .logo {
    margin: 0 auto 0 20px;
  }
}
.pc-header .top .margin {
  width: calc((100% - 198px) / 2);
  min-width: 550px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media screen and (max-width: 930px) {
  .pc-header .top .margin {
    min-width: 520px;
  }
}
.pc-header .top .sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  height: 78px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: -1px;
  right: 30px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media screen and (max-width: 930px) {
  .pc-header .top .sub {
    right: 10px;
  }
}
.pc-header .top .sub p {
  font-family: "Montserrat", sans-serif;
  font-weight: lighter;
}
.pc-header .top .sub .icon {
  vertical-align: middle;
}
.pc-header .search {
  width: 304px;
}
.pc-header .search .gsc-control-cse {
  border: none;
  background: none;
  padding: 0;
}
.pc-header .search .gsc-input-box {
  width: 217px;
  height: 37px;
}
.pc-header .search .gsc-input-box .gsc-input {
  height: 100%;
}
.pc-header .search .gsc-clear-button {
  display: none;
}
.pc-header .pc-gnav {
  margin: 10px 0 20px 0;
}
.pc-header .pc-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pc-header .pc-nav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 10px 5px 10px;
  position: relative;
}
.pc-header .pc-nav li::after {
  background: #dfece6;
  content: "";
  width: 90%;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.pc-header .pc-nav li:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.pc-header .pc-nav .en {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  text-align: center;
}
.pc-header .pc-nav .jp {
  font-size: 0.75rem;
  text-align: center;
  letter-spacing: normal;
}
.pc-header .pc-sticky {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 100px;
  background: white;
  position: fixed;
  z-index: 9;
  top: 0;
  -webkit-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
          box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  -webkit-transition: -webkit-box-shadow 250ms;
  transition: -webkit-box-shadow 250ms;
  transition: box-shadow 250ms;
  transition: box-shadow 250ms, -webkit-box-shadow 250ms;
}
.pc-header .pc-sticky .logo {
  height: 20px;
  margin-right: 30px;
}
.pc-header .pc-sticky .logo a {
  height: 20px;
  display: block;
}
.pc-header .pc-sticky .logo img {
  width: 144px;
  height: 20px;
  vertical-align: top;
}
.pc-header .pc-sticky .pc-nav {
  z-index: 9;
}
.pc-header .pc-sticky .search {
  margin-left: 10px;
}
@media screen and (max-width: 1230px) {
  .pc-header .pc-sticky {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 15px 20px;
  }
  .pc-header .pc-sticky .logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .pc-header .pc-sticky .pc-nav {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .pc-header .pc-sticky .search {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

/*SP*/
@media screen and (max-width: 750px) {
  header {
    height: 12.8vw;
    margin-bottom: 5.4666666667vw;
    position: relative;
  }
}

.sp-header {
  width: 100%;
  height: 12.8vw;
  position: fixed;
  top: 0;
  z-index: 100;
}
.sp-header .top {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 12.8vw;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  background: white;
}
.sp-header .top.default {
  z-index: 100;
}
.sp-header .top h1 {
  line-height: 7.4666666667vw;
}
.sp-header .top h1 img {
  width: 52.8vw;
  height: 7.4666666667vw;
}
.sp-header .menu {
  width: 0;
  height: 0;
}
.sp-header .menu .top {
  z-index: 101;
  display: none;
  position: fixed;
}
.sp-header .check {
  display: none;
}
.sp-header .check:checked ~ .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sp-header .check:checked ~ .sp-gnav {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.sp-header .check:checked ~ .sp-gnav-bg {
  display: block;
}
.sp-header .menu-btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
.sp-header .menu-btn img {
  width: 11.7333333333vw;
  height: 12.8vw;
}
.sp-header .sp-gnav-bg {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background: black;
  opacity: 0.7;
  display: none;
  z-index: 5;
}
.sp-header .sp-gnav {
  width: 100%;
  min-height: 93.4666666667vw;
  background: #f5f5f5;
  position: fixed;
  top: 12.8vw;
  padding: 0 0 4vw 3.3333333333vw;
  z-index: 12;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
}
.sp-header li {
  height: 10.9333333333vw;
  border-bottom: 1px solid white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sp-header li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sp-header .en {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
.sp-header .jp {
  font-size: 0.75rem;
  margin-left: 2vw;
}
.sp-header .sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 81px;
  margin-bottom: 20px;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}
.sp-header .sub p {
  font-family: "Montserrat", sans-serif;
  font-weight: lighter;
  font-size: 0.875rem;
}
.sp-header .sub .icon {
  vertical-align: middle;
}
.sp-header .search {
  width: 81.0666666667vw;
}
.sp-header .search .gsc-control-cse {
  border: none;
  background: none;
  padding: 0;
}
.sp-header .search .gsc-input-box {
  width: 57.8666666667vw;
  height: 9.6vw;
}
.sp-header .search .gsc-input-box .gsc-input {
  height: 100%;
  font-size: 1rem;
}
.sp-header .search .gsc-search-button {
  width: 18.1333333333vw;
  height: 7.0666666667vw;
}
.sp-header .search .gsc-search-button svg {
  width: 3.4666666667vw;
  height: 3.4666666667vw;
}
.sp-header .search .gsc-clear-button {
  display: none;
}

/********************************
gnav
*********************************/
/********************************
main 全ページ共通部品があればこちらに入れる
*********************************/
/********************************
footer 全ページ共通部品があればこちらに入れる
*********************************/
.subscribe .info {
  width: 100%;
  min-height: 645px;
  background: #f5f5f5;
  padding-top: 50px;
  border-bottom: solid 1px #cecece;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .subscribe .info {
    padding-top: 6vw;
    border: none;
  }
}
.subscribe .info .wrap {
  max-width: 780px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 930px) {
  .subscribe .info .wrap {
    padding: 0 10px;
  }
}
@media screen and (max-width: 750px) {
  .subscribe .info .wrap {
    max-width: 78.6666666667vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    row-gap: 9.3333333333vw;
    padding: 0 1.3333333333vw;
  }
}
.subscribe .info .magazine {
  width: 253px;
  height: 359px;
}
@media screen and (max-width: 750px) {
  .subscribe .info .magazine {
    width: 66.6666666667vw;
    height: 94.1333333333vw;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.subscribe .info .text {
  width: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}
@media screen and (max-width: 750px) {
  .subscribe .info .text {
    width: 100%;
    row-gap: 5.3333333333vw;
    text-align: justify;
  }
}
.subscribe .info .text h3 {
  font-weight: bold;
  font-size: 1.125rem;
  border-bottom: 1px solid black;
  padding-bottom: 3px;
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .subscribe .info .text h3 {
    font-size: 1rem;
    padding-bottom: 0.6666666667vw;
    margin-bottom: 2vw;
    border-bottom: 2px solid black;
  }
}
.subscribe .info .text table {
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .subscribe .info .text table {
    margin-bottom: 1.3333333333vw;
  }
}
.subscribe .info .text th {
  text-align: left;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  font-weight: normal;
}
.subscribe .subsc-btn {
  max-width: 750px;
  width: 100%;
  height: 78px;
  background: #cecece;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-btn {
    height: 10.8vw;
    margin-top: 13.3333333333vw;
  }
}
.subscribe .subsc-btn p {
  font-size: 1.125rem;
  font-weight: bold;
  margin-right: 20px;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-btn p {
    font-size: 1.0625rem;
    margin-right: 2.6666666667vw;
  }
}
.subscribe .subsc-btn .plus {
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-btn .plus {
    width: 4.6666666667vw;
    height: 4.6666666667vw;
  }
}
.subscribe .subsc-btn .minus {
  width: 18px;
  height: 3.5px;
  display: none;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-btn .minus {
    width: 4.6666666667vw;
    height: 0.9333333333vw;
  }
}
.subscribe .check {
  display: none;
}
.subscribe .check:checked ~ .info .plus {
  display: none;
}
.subscribe .check:checked ~ .info .minus {
  display: block;
}
.subscribe .check:checked ~ .subsc-form {
  display: block;
}
.subscribe .subsc-form {
  width: 100%;
  padding: 50px 0;
  display: none;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form {
    padding: 13.3333333333vw 0;
  }
}
.subscribe .subsc-form .form-title {
  font-family: inherit;
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .form-title {
    margin-bottom: 5.3333333333vw;
  }
}
.subscribe .subsc-form form {
  width: 695px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form form {
    width: 82.6666666667vw;
    row-gap: 5.3333333333vw;
  }
}
.subscribe .subsc-form .error-message,
.subscribe .subsc-form .confirm-message {
  font-size: 1.25rem;
  font-weight: bold;
  display: none;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .error-message,
  .subscribe .subsc-form .confirm-message {
    font-size: 1.125rem;
  }
}
.subscribe .subsc-form .error-message {
  color: #700000;
}
.subscribe .subsc-form .info-message {
  text-align: justify;
}
.subscribe .subsc-form .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.subscribe .subsc-form .item.item-sub {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .item {
    display: block;
  }
}
.subscribe .subsc-form .item-name {
  font-size: 1rem;
  font-weight: bold;
  width: 190px;
  margin-right: 20px;
  text-align: right;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .item-name {
    width: auto;
    text-align: left;
    margin: 0 1.3333333333vw 2vw 0;
  }
}
.subscribe .subsc-form .item-name .required {
  color: #7d0000;
  margin-right: -10px;
}
.subscribe .subsc-form .input {
  width: 490px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .input {
    width: 100%;
  }
}
.subscribe .subsc-form .input label,
.subscribe .subsc-form .input .mail .row2 {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .input label,
  .subscribe .subsc-form .input .mail .row2 {
    font-size: 0.875rem;
  }
}
.subscribe .subsc-form .radio {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .radio {
    row-gap: 3.3333333333vw;
    margin-left: 2vw;
  }
}
.subscribe .subsc-form .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.subscribe .subsc-form .mwform-radio-field label {
  position: relative;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .mwform-radio-field-text {
    margin-left: 4.8vw;
  }
}
.subscribe .subsc-form input[type=radio] {
  margin-right: 2px;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form input[type=radio] {
    -webkit-transform: scale(2);
            transform: scale(2);
    margin: 0;
    position: absolute;
    top: 1.5333333333vw;
  }
}
.subscribe .subsc-form input {
  border: solid 1px #cccccc;
  padding: 2px 4px 1px;
}
.subscribe .subsc-form .column {
  margin-right: 20px;
}
.subscribe .subsc-form .column input {
  width: 99%;
}
.subscribe .subsc-form .name .column {
  width: 100px;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .name .column {
    width: 35.4666666667vw;
  }
}
.subscribe .subsc-form .mail {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.subscribe .subsc-form .mail .row2 {
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .mail .row2 {
    margin-top: 2.6666666667vw;
  }
}
.subscribe .subsc-form .mail .row1,
.subscribe .subsc-form .mail .row3 {
  width: 100%;
}
.subscribe .subsc-form .address {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
  margin-bottom: -5px;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .address {
    row-gap: 2.6666666667vw;
  }
}
.subscribe .subsc-form .address .row {
  position: relative;
}
.subscribe .subsc-form .address .row:first-of-type .column {
  width: 120px;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .address .row:first-of-type .column {
    width: 32vw;
  }
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .address .row:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.6666666667vw;
  }
}
.subscribe .subsc-form .address .row:nth-of-type(2) .column {
  width: 152px;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .address .row:nth-of-type(2) .column {
    width: 40.5333333333vw;
  }
}
.subscribe .subsc-form .address .row:last-of-type .column {
  width: 100%;
  margin: 0;
}
.subscribe .subsc-form .address .row:last-of-type .column textarea {
  height: 31px;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .address .row:last-of-type .column textarea {
    height: 13.3333333333vw;
  }
}
.subscribe .subsc-form textarea {
  width: 99%;
  border: solid 1px #cccccc;
  padding: 2px 4px 1px;
}
.subscribe .subsc-form .address-search {
  background: #333333;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 120px;
  height: 35px;
  border-radius: 5px;
  font-weight: bold;
  position: absolute;
  left: 140px;
  top: 22px;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .address-search {
    width: 32vw;
    height: 9.3333333333vw;
    left: 37.3333333333vw;
    top: 4.8vw;
    border-radius: 0.9333333333vw;
    padding-left: 9.3333333333vw;
  }
}
.subscribe .subsc-form .address-search::before {
  content: "";
  background-image: url(../img/arrow.png);
  width: 6px;
  height: 11px;
  background-size: cover;
  position: absolute;
  left: 20px;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .address-search::before {
    width: 1.6vw;
    height: 2.9333333333vw;
    left: 5.3333333333vw;
  }
}
.subscribe .subsc-form .other textarea {
  height: 125px;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form .other textarea {
    height: 40vw;
  }
}
.subscribe .subsc-form input[type=submit] {
  width: 197px;
  height: 36px;
  border: solid 1px #534d4c;
  border-radius: 3px;
  margin: 5px auto 0 auto;
}
@media screen and (max-width: 750px) {
  .subscribe .subsc-form input[type=submit] {
    width: 52.5333333333vw;
    height: 9.6vw;
    margin-top: 6.6666666667vw;
  }
}
.subscribe .subsc-form .mw_wp_form_confirm .confirm-message {
  display: block;
}
.subscribe .subsc-form .mw_wp_form_confirm .mail p,
.subscribe .subsc-form .mw_wp_form_confirm .address-search {
  display: none;
}
.subscribe .subsc-form .mw_wp_form_complete {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.subscribe .subsc-form .mw_wp_form_complete .p1 {
  font-size: 1.5rem;
  font-weight: bold;
}

footer {
  background: #f5f5f5;
  border-top: solid 1px #cecece;
}
footer .wrap {
  max-width: 1150px;
  min-height: 351px;
  padding: 50px 20px 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  footer .wrap {
    width: 100%;
    height: auto;
    padding: 11.3333333333vw 5.3333333333vw 4vw 10.6666666667vw;
  }
}
footer .wrap .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 45px;
}
@media screen and (max-width: 750px) {
  footer .wrap .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10vw;
  }
}
footer .wrap .top h1 {
  line-height: 28px;
}
@media screen and (max-width: 750px) {
  footer .wrap .top h1 {
    line-height: 7.4666666667vw;
  }
  footer .wrap .top h1 img {
    width: 52.8vw;
    height: 7.4666666667vw;
  }
}
footer .wrap .top .sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -5px 0 0 50px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media screen and (max-width: 750px) {
  footer .wrap .top .sub {
    margin: 3.3333333333vw 0 0 0;
    display: block;
  }
}
footer .wrap .top .sub .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  footer .wrap .top .sub .link {
    -webkit-column-gap: 3.3333333333vw;
       -moz-column-gap: 3.3333333333vw;
            column-gap: 3.3333333333vw;
  }
}
footer .wrap .top .sub .icon {
  vertical-align: middle;
}
footer .wrap .top .sub .search {
  width: 304px;
  margin-left: 10px;
}
@media screen and (max-width: 750px) {
  footer .wrap .top .sub .search {
    width: 81.0666666667vw;
    margin: 3.3333333333vw 0 0 0;
  }
}
footer .wrap .top .sub .gsc-control-cse {
  border: none;
  background: none;
  padding: 0;
}
footer .wrap .top .sub .gsc-input-box {
  width: 217px;
  height: 37px;
}
@media screen and (max-width: 750px) {
  footer .wrap .top .sub .gsc-input-box {
    width: 57.8666666667vw;
    height: 9.6vw;
  }
}
footer .wrap .top .sub .gsc-input-box .gsc-input {
  height: 100%;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  footer .wrap .top .sub .gsc-search-button {
    width: 18.1333333333vw;
    height: 7.0666666667vw;
  }
  footer .wrap .top .sub .gsc-search-button svg {
    width: 3.4666666667vw;
    height: 3.4666666667vw;
  }
}
footer .wrap .top .sub .gsc-clear-button {
  display: none;
}
footer .wrap .footer-nav .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1180px) {
  footer .wrap .footer-nav .main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}
@media screen and (max-width: 750px) {
  footer .wrap .footer-nav .main {
    row-gap: 5.3333333333vw;
  }
}
@media screen and (max-width: 1180px) {
  footer .wrap .footer-nav .block:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}
@media screen and (max-width: 750px) {
  footer .wrap .footer-nav .block:last-child {
    row-gap: 4.6666666667vw;
  }
}
footer .wrap .footer-nav .main-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .wrap .footer-nav .sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1px;
}
@media screen and (max-width: 1180px) {
  footer .wrap .footer-nav .sub {
    margin-top: -10px;
  }
}
@media screen and (max-width: 750px) {
  footer .wrap .footer-nav .sub {
    margin-top: 2.6666666667vw;
    row-gap: 4vw;
  }
}
footer .wrap .footer-nav .sub li {
  list-style: "-";
  list-style-position: inside;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  font-size: 0.875rem;
}
footer .wrap .footer-nav .en {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
footer .wrap .footer-nav .jp {
  font-size: 0.75rem;
  margin-left: 5px;
}
@media screen and (max-width: 750px) {
  footer .wrap .footer-nav .jp {
    margin-left: 2vw;
  }
}
footer .wrap .footer-nav .law {
  font-weight: bold;
}
footer .wrap small {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  font-size: 0.875rem;
  text-align: center;
  display: block;
  margin-top: 25px;
}
@media screen and (max-width: 750px) {
  footer .wrap small {
    text-align: left;
    margin-top: 10.6666666667vw;
  }
}

/********************************
home
*********************************/
/*メインビジュアル*/
.main-v {
  width: 100%;
  height: 551px;
  background: white;
}
@media screen and (max-width: 750px) {
  .main-v {
    height: 93.6vw;
  }
}
.main-v .item {
  width: 720px;
  height: 488px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .main-v .item {
    width: 78.6666666667vw;
    height: 78.4vw;
  }
}
.main-v .item a {
  display: block;
  width: 100%;
}
.main-v .item .photo {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 750px) {
  .main-v .item .photo {
    height: 56vw;
  }
}
.main-v .item .text {
  width: 615px;
  height: 126px;
  line-height: 1.5;
  background: white;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  padding: 15px 10px 10px 15px;
}
@media screen and (max-width: 750px) {
  .main-v .item .text {
    width: 73.3333333333vw;
    height: 30.1333333333vw;
    padding: 2.6666666667vw 2.6666666667vw 2.6666666667vw 4vw;
  }
}
.main-v .item .text__bg {
  width: 615px;
  height: 68px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  -webkit-box-shadow: 0 0px 10px 5px #dadada;
          box-shadow: 0 0px 10px 5px #dadada;
}
@media screen and (max-width: 750px) {
  .main-v .item .text__bg {
    width: 73.3333333333vw;
    height: 22.6666666667vw;
  }
}
.main-v .item .sub-title {
  font-family: "Montserrat", sans-serif;
  font-weight: lighter;
}
.main-v .item .main-title {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 750px) {
  .main-v .item .main-title {
    font-size: 1.125rem;
    margin-top: 0.6666666667vw;
  }
}
.main-v .item .date {
  font-size: 0.75rem;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media screen and (max-width: 750px) {
  .main-v .item .date {
    bottom: 2vw;
    right: 2vw;
  }
}
.main-v .main-v-slide,
.main-v .slick-list,
.main-v .slick-track {
  height: 500px;
}
@media screen and (max-width: 750px) {
  .main-v .main-v-slide,
  .main-v .slick-list,
  .main-v .slick-track {
    height: 80vw;
  }
}
.main-v .slick-dots {
  bottom: -30px;
}
@media screen and (max-width: 750px) {
  .main-v .slick-dots {
    bottom: -8vw;
  }
}
.main-v .slick-dots li {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 750px) {
  .main-v .slick-dots li {
    width: 5.3333333333vw;
    height: 4vw;
  }
}
.main-v .slick-dots li button {
  width: 20px;
  height: 20px;
  padding: 0;
}
@media screen and (max-width: 750px) {
  .main-v .slick-dots li button {
    width: 4vw;
    height: 4vw;
  }
}
.main-v .slick-dots li button::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid #333333;
  border-radius: 12px;
  opacity: 1;
  margin: 4px 0 0 4px;
}
@media screen and (max-width: 750px) {
  .main-v .slick-dots li button::before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-radius: 2.6666666667vw;
    margin: 0.6666666667vw 0 0 1.3333333333vw;
  }
}
.main-v .slick-dots .slick-active button:before {
  background: #333333;
}

.sec-title {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
}

.and-more {
  width: 144px;
  height: 40px;
  background: white;
  border: 1px solid black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  -webkit-transition: letter-spacing 0.3s;
  transition: letter-spacing 0.3s;
}
@media screen and (min-width: 751px) {
  .and-more:hover {
    opacity: 1;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 0.15em;
  }
}
@media screen and (max-width: 750px) {
  .and-more {
    width: 38.4vw;
    height: 10.6666666667vw;
  }
}

/*latest article*/
.latest {
  width: 100%;
  height: auto;
  min-height: 419px;
  background: #dfece6;
  padding: 50px 0 30px 0;
}
@media screen and (max-width: 750px) {
  .latest {
    padding: 13.3333333333vw 2vw 22vw 2vw;
  }
}
.latest .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 50px auto 40px auto;
  padding-left: 10px;
  row-gap: 14px;
  width: 805px;
  white-space: nowrap;
}
@media screen and (max-width: 930px) {
  .latest .list {
    white-space: normal;
    width: 97%;
  }
}
@media screen and (max-width: 750px) {
  .latest .list {
    margin: 13.3333333333vw auto 8vw auto;
    width: 78.6666666667vw;
    padding: 0;
    row-gap: 4vw;
  }
}
.latest .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 750px) {
  .latest .item {
    display: block;
  }
}
.latest .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-right: 15px;
}
@media screen and (max-width: 750px) {
  .latest .data {
    -webkit-column-gap: 4vw;
       -moz-column-gap: 4vw;
            column-gap: 4vw;
  }
}
.latest .date {
  font-weight: bold;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 90px;
}
@media screen and (max-width: 750px) {
  .latest .date {
    width: auto;
  }
}
.latest .cat {
  font-weight: bold;
  width: 135px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media screen and (max-width: 750px) {
  .latest .cat {
    width: auto;
  }
}
.latest .title {
  position: relative;
}
@media screen and (min-width: 751px) {
  .latest .title::after {
    background: black;
    content: "";
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .latest .title:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
@media screen and (max-width: 750px) {
  .latest .title {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

/*web article*/
.web {
  width: 100%;
  height: auto;
  min-height: 589px;
  padding: 50px 0 30px 0;
  background: white;
}
@media screen and (max-width: 750px) {
  .web {
    padding: 10.6666666667vw 0 13.3333333333vw 0;
  }
}
.web .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px auto;
}
@media screen and (max-width: 750px) {
  .web .list {
    margin: 9.3333333333vw auto;
  }
}
.web .item {
  width: 390px;
  padding: 0 20px;
}
@media screen and (max-width: 750px) {
  .web .item {
    width: 37.3333333333vw;
    padding: 0 2.6666666667vw;
  }
}
.web .zoom-box {
  width: 350px;
  height: 251px;
  display: inline-block;
  overflow: hidden;
}
.web .photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (min-width: 751px) {
  .web .photo:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media screen and (max-width: 750px) {
  .web .photo {
    width: 100%;
    height: 33.4666666667vw;
  }
}
.web .title {
  width: 350px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: bold;
  margin-top: 10px;
  letter-spacing: normal;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 750px) {
  .web .title {
    width: 100%;
    font-size: 0.75rem;
    margin-top: 1.3333333333vw;
  }
}
.web .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 0.75rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.web .tag p::before {
  content: "#";
}
@media screen and (max-width: 750px) {
  .web .tag {
    -webkit-column-gap: 2.6666666667vw;
       -moz-column-gap: 2.6666666667vw;
            column-gap: 2.6666666667vw;
  }
}
.web .slick-arrow {
  top: 91px;
}
@media screen and (max-width: 750px) {
  .web .slick-arrow {
    top: 12.1333333333vw;
  }
}

.slick-arrow {
  height: 70px;
  position: absolute;
  top: 91px;
  z-index: 10;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .slick-arrow {
    height: 9.3333333333vw;
    top: 12.1333333333vw;
  }
}

.prev-arrow {
  left: 5%;
}
@media screen and (max-width: 750px) {
  .prev-arrow {
    left: 0;
  }
}

.next-arrow {
  right: 5%;
}
@media screen and (max-width: 750px) {
  .next-arrow {
    right: 0;
  }
}

/*issue*/
.issue {
  width: 100%;
  min-height: 560px;
  background: #e3e9d0;
  padding: 45px 0 30px 0;
}
@media screen and (max-width: 750px) {
  .issue {
    padding: 6vw 0 6.6666666667vw 0;
  }
}
.issue .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px auto;
}
@media screen and (max-width: 750px) {
  .issue .list {
    margin: 11.3333333333vw auto 9.3333333333vw auto;
  }
}
.issue .item {
  width: 220px;
  padding: 0 5px;
}
@media screen and (max-width: 750px) {
  .issue .item {
    width: 37.3333333333vw;
    padding: 0 2.6666666667vw;
  }
}
.issue .photo {
  width: 210px;
  height: 213px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 750px) {
  .issue .photo {
    width: 32vw;
    height: 32.4vw;
  }
}
.issue .text {
  width: 210px;
  height: 95px;
  background: white;
  padding: 8px 10px;
}
@media screen and (max-width: 750px) {
  .issue .text {
    width: 32vw;
    height: 28.8vw;
    padding: 2.6666666667vw;
  }
}
.issue .sub-title {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  border-bottom: solid 1px black;
  padding-bottom: 5px;
}
@media screen and (max-width: 750px) {
  .issue .sub-title {
    padding-bottom: 1.3333333333vw;
  }
}
.issue .main-title {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 8px;
  letter-spacing: normal;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 750px) {
  .issue .main-title {
    margin-top: 1.3333333333vw;
    font-size: 0.875rem;
  }
}
.issue .slick-arrow {
  top: 119px;
}
@media screen and (max-width: 750px) {
  .issue .slick-arrow {
    top: 26vw;
  }
}

/********************************
issue
*********************************/
.post-type-archive-issue main,
.single-issue main {
  /*最新号*/
  /*バックナンバー*/
}
.post-type-archive-issue main .latest-issue,
.single-issue main .latest-issue {
  max-width: 1125px;
  width: 100%;
  margin: 0 auto 90px auto;
}
@media screen and (max-width: 1180px) {
  .post-type-archive-issue main .latest-issue,
  .single-issue main .latest-issue {
    width: 97%;
  }
}
@media screen and (max-width: 750px) {
  .post-type-archive-issue main .latest-issue,
  .single-issue main .latest-issue {
    margin-bottom: 16vw;
    width: 92%;
  }
}
.post-type-archive-issue main .latest-issue .wrap,
.single-issue main .latest-issue .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 60px 0 80px;
}
@media screen and (max-width: 1180px) {
  .post-type-archive-issue main .latest-issue .wrap,
  .single-issue main .latest-issue .wrap {
    margin: 0 2%;
  }
}
@media screen and (max-width: 750px) {
  .post-type-archive-issue main .latest-issue .wrap,
  .single-issue main .latest-issue .wrap {
    display: block;
  }
}
.post-type-archive-issue main .latest-issue .cover,
.single-issue main .latest-issue .cover {
  width: 360px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid #cccccc;
  margin-right: 65px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media screen and (max-width: 1180px) {
  .post-type-archive-issue main .latest-issue .cover,
  .single-issue main .latest-issue .cover {
    width: 40%;
    margin-right: 5%;
  }
}
@media screen and (max-width: 750px) {
  .post-type-archive-issue main .latest-issue .cover,
  .single-issue main .latest-issue .cover {
    width: 70%;
    margin: 0 auto 6.6666666667vw auto;
  }
}
.post-type-archive-issue main .latest-issue .cover img,
.single-issue main .latest-issue .cover img {
  width: 100%;
}
.post-type-archive-issue main .latest-issue .text .volume,
.single-issue main .latest-issue .text .volume {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .post-type-archive-issue main .latest-issue .text .volume,
  .single-issue main .latest-issue .text .volume {
    margin-bottom: 4vw;
    text-align: center;
  }
}
.post-type-archive-issue main .latest-issue .text h4,
.single-issue main .latest-issue .text h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (max-width: 750px) {
  .post-type-archive-issue main .latest-issue .text h4,
  .single-issue main .latest-issue .text h4 {
    margin-bottom: 0.6666666667vw;
  }
}
.post-type-archive-issue main .latest-issue .text .detail p,
.single-issue main .latest-issue .text .detail p {
  font-size: 0.75rem;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  line-height: 1.8;
}
.post-type-archive-issue main .latest-issue .text .detail h5,
.single-issue main .latest-issue .text .detail h5 {
  font-weight: bold;
  margin: 10px 0 3px 0;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .post-type-archive-issue main .latest-issue .text .detail h5,
  .single-issue main .latest-issue .text .detail h5 {
    margin: 2vw 0 0.4vw 0;
  }
}
.post-type-archive-issue main .latest-issue .text .detail h5::before,
.single-issue main .latest-issue .text .detail h5::before {
  content: "[ ";
}
.post-type-archive-issue main .latest-issue .text .detail h5::after,
.single-issue main .latest-issue .text .detail h5::after {
  content: " ]";
}
.post-type-archive-issue main .back-number,
.single-issue main .back-number {
  width: 100%;
  background: #e3e9d0;
  padding: 50px 0 80px 0;
}
@media screen and (max-width: 750px) {
  .post-type-archive-issue main .back-number,
  .single-issue main .back-number {
    padding: 16vw 0;
  }
}
.post-type-archive-issue main .back-number .list,
.single-issue main .back-number .list {
  max-width: 930px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 70px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 92%;
}
@media (max-width: 1030px) {
  .post-type-archive-issue main .back-number .list,
  .single-issue main .back-number .list {
    width: 690px;
  }
}
@media screen and (max-width: 750px) {
  .post-type-archive-issue main .back-number .list,
  .single-issue main .back-number .list {
    row-gap: 8vw;
    -webkit-column-gap: 4vw;
       -moz-column-gap: 4vw;
            column-gap: 4vw;
    width: 88vw;
  }
}
.post-type-archive-issue main .back-number .item,
.single-issue main .back-number .item {
  width: 210px;
  height: 308px;
}
@media screen and (max-width: 750px) {
  .post-type-archive-issue main .back-number .item,
  .single-issue main .back-number .item {
    width: 42vw;
    height: 61.6vw;
  }
}
.post-type-archive-issue main .back-number .photo,
.single-issue main .back-number .photo {
  width: 100%;
  height: 213px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 750px) {
  .post-type-archive-issue main .back-number .photo,
  .single-issue main .back-number .photo {
    height: 42.6vw;
  }
}
.post-type-archive-issue main .back-number .text,
.single-issue main .back-number .text {
  width: 100%;
  height: 95px;
  line-height: 1.5;
  background: white;
  padding: 8px 10px;
}
@media screen and (max-width: 750px) {
  .post-type-archive-issue main .back-number .text,
  .single-issue main .back-number .text {
    height: 19vw;
    padding: 1.3333333333vw;
  }
}
.post-type-archive-issue main .back-number .sub-title,
.single-issue main .back-number .sub-title {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  border-bottom: solid 1px black;
  padding-bottom: 5px;
}
@media screen and (max-width: 750px) {
  .post-type-archive-issue main .back-number .sub-title,
  .single-issue main .back-number .sub-title {
    padding-bottom: 0.9333333333vw;
  }
}
.post-type-archive-issue main .back-number .main-title,
.single-issue main .back-number .main-title {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 8px;
  letter-spacing: normal;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 750px) {
  .post-type-archive-issue main .back-number .main-title,
  .single-issue main .back-number .main-title {
    margin-top: 0.6666666667vw;
    font-size: 0.8125rem;
  }
}
.post-type-archive-issue main .back-number .pagination,
.single-issue main .back-number .pagination {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .post-type-archive-issue main .back-number .pagination,
  .single-issue main .back-number .pagination {
    margin-top: 13.3333333333vw;
  }
}

/*個別ページ*/
.single-issue main .intro {
  margin-top: 35px;
}
@media screen and (max-width: 750px) {
  .single-issue main .intro {
    margin-top: 4.6666666667vw;
  }
}
.single-issue main .intro p {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  text-align: justify;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .single-issue main .intro p {
    margin-top: 2.6666666667vw;
  }
}
.single-issue main .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 70px 0 25px 0;
}
@media screen and (max-width: 750px) {
  .single-issue main .head {
    margin: 9.3333333333vw 0 3.3333333333vw 0;
  }
}
.single-issue main .head .en {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0;
}
.single-issue main .head .jp {
  font-weight: bold;
  font-size: 0.75rem;
  color: #666666;
  margin: 0 8px;
}
@media screen and (max-width: 750px) {
  .single-issue main .head .jp {
    margin: 0 1.0666666667vw;
  }
}
.single-issue main .head .line {
  height: 1px;
  background: #cccccc;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.single-issue main .comment {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  font-size: 0.875rem;
  text-align: justify;
}
.single-issue main .link {
  width: 144px;
  height: 40px;
  border: solid 1px black;
  margin: 55px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .single-issue main .link {
    width: 38.4vw;
    height: 10.6666666667vw;
    margin-top: 10.6666666667vw;
  }
}

/********************************
post
*********************************/
.single-post main,
.archive-post main {
  max-width: 1125px;
  width: 100%;
  margin: 40px auto 100px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1180px) {
  .single-post main,
  .archive-post main {
    width: 97%;
  }
}
@media screen and (max-width: 750px) {
  .single-post main,
  .archive-post main {
    margin: 5.3333333333vw auto 13.3333333333vw auto;
    display: block;
    padding: 0 4vw;
  }
}
.single-post main .main,
.archive-post main .main {
  width: 68.9777777778%;
  padding-right: 40px;
  border-right: solid 1px #cccccc;
}
@media screen and (max-width: 1180px) {
  .single-post main .main,
  .archive-post main .main {
    padding-right: 20px;
  }
}
@media screen and (max-width: 750px) {
  .single-post main .main,
  .archive-post main .main {
    width: 100%;
    border: none;
    padding: 0;
  }
}
.single-post main .side,
.archive-post main .side {
  width: 31.0222222222%;
  padding-left: 40px;
  margin-bottom: 90px;
}
@media screen and (max-width: 1180px) {
  .single-post main .side,
  .archive-post main .side {
    padding-left: 20px;
  }
}
@media screen and (max-width: 750px) {
  .single-post main .side,
  .archive-post main .side {
    width: 100%;
    margin: 20vw 0 0 0;
    padding: 0;
  }
}
.single-post main .side .sec-head,
.archive-post main .side .sec-head {
  border-bottom: 2px solid #dfece6;
  width: 100%;
  padding-bottom: 2px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
@media screen and (max-width: 750px) {
  .single-post main .side .sec-head,
  .archive-post main .side .sec-head {
    -webkit-column-gap: 0.6666666667vw;
       -moz-column-gap: 0.6666666667vw;
            column-gap: 0.6666666667vw;
    padding-bottom: 0.2666666667vw;
    margin-bottom: 2vw;
  }
}
.single-post main .side .sec-head .en,
.archive-post main .side .sec-head .en {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  width: auto;
}
.single-post main .side .sec-head .slash,
.archive-post main .side .sec-head .slash {
  font-size: 1.125rem;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
}
.single-post main .side .sec-head .jp,
.archive-post main .side .sec-head .jp {
  font-weight: bold;
  font-size: 0.75rem;
}
.single-post main .side .latest-article ul,
.archive-post main .side .latest-article ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 750px) {
  .single-post main .side .latest-article ul,
  .archive-post main .side .latest-article ul {
    row-gap: 2.6666666667vw;
  }
}
.single-post main .side .latest-article ul p,
.archive-post main .side .latest-article ul p {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 750px) {
  .single-post main .side .latest-article ul p,
  .archive-post main .side .latest-article ul p {
    font-size: 0.8125rem;
  }
}
.single-post main .side .latest-article ul p::before,
.archive-post main .side .latest-article ul p::before {
  content: "●";
  width: 23px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  color: #dfece6;
  display: block;
}
@media screen and (max-width: 750px) {
  .single-post main .side .latest-article ul p::before,
  .archive-post main .side .latest-article ul p::before {
    width: 3.0666666667vw;
    margin-right: 1.3333333333vw;
  }
}
.single-post main .side .category,
.archive-post main .side .category {
  margin: 50px 0;
}
@media screen and (max-width: 750px) {
  .single-post main .side .category,
  .archive-post main .side .category {
    margin: 6.6666666667vw 0;
  }
}
.single-post main .side .category ul,
.archive-post main .side .category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}
@media screen and (max-width: 750px) {
  .single-post main .side .category ul,
  .archive-post main .side .category ul {
    row-gap: 2vw;
  }
}
.single-post main .side .category ul li,
.archive-post main .side .category ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .single-post main .side .category ul li,
  .archive-post main .side .category ul li {
    row-gap: 0.4vw;
  }
}
.single-post main .side .category ul a,
.archive-post main .side .category ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 930px) {
  .single-post main .side .category ul a,
  .archive-post main .side .category ul a {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .single-post main .side .category ul a,
  .archive-post main .side .category ul a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    row-gap: 0.4vw;
  }
}
.single-post main .side .category ul .en,
.archive-post main .side .category ul .en {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
.single-post main .side .category ul .jp,
.archive-post main .side .category ul .jp {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  font-size: 0.875rem;
  color: #666666;
}
@media screen and (max-width: 750px) {
  .single-post main .side .category ul .jp,
  .archive-post main .side .category ul .jp {
    font-size: 0.8125rem;
  }
}
.single-post main .side .category ul .count,
.archive-post main .side .category ul .count {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  font-size: 0.8rem;
}
.single-post main .side .archive ul,
.archive-post main .side .archive ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}
@media screen and (max-width: 750px) {
  .single-post main .side .archive ul,
  .archive-post main .side .archive ul {
    row-gap: 2vw;
  }
}
.single-post main .side .archive label,
.archive-post main .side .archive label {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.single-post main .side .archive label img,
.archive-post main .side .archive label img {
  position: absolute;
}
.single-post main .side .archive label p,
.archive-post main .side .archive label p {
  padding-left: 25px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .single-post main .side .archive label p,
  .archive-post main .side .archive label p {
    padding-left: 4.6666666667vw;
  }
}
.single-post main .side .archive .check,
.archive-post main .side .archive .check {
  display: none;
}
.single-post main .side .archive .check:checked ~ label .close,
.archive-post main .side .archive .check:checked ~ label .close {
  display: none;
}
.single-post main .side .archive .check:checked ~ label .open,
.archive-post main .side .archive .check:checked ~ label .open {
  display: block;
}
.single-post main .side .archive .check:checked ~ .month-list,
.archive-post main .side .archive .check:checked ~ .month-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single-post main .side .archive .check:checked ~ .month-list li,
.archive-post main .side .archive .check:checked ~ .month-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-post main .side .archive .close,
.archive-post main .side .archive .close {
  width: 6px;
  height: 11px;
  top: 7px;
  left: 3px;
}
@media screen and (max-width: 750px) {
  .single-post main .side .archive .close,
  .archive-post main .side .archive .close {
    width: 1.6vw;
    height: 2.9333333333vw;
    top: 1.8666666667vw;
    left: 0.8vw;
  }
}
.single-post main .side .archive .open,
.archive-post main .side .archive .open {
  display: none;
  width: 11px;
  height: 6px;
  top: 10px;
}
@media screen and (max-width: 750px) {
  .single-post main .side .archive .open,
  .archive-post main .side .archive .open {
    width: 2.9333333333vw;
    height: 1.6vw;
    top: 2.6666666667vw;
  }
}
.single-post main .side .archive .month-list,
.archive-post main .side .archive .month-list {
  display: none;
  margin: 5px 0 0 25px;
}
@media screen and (max-width: 750px) {
  .single-post main .side .archive .month-list,
  .archive-post main .side .archive .month-list {
    margin: 2vw 0 0 4.6666666667vw;
    font-size: 0.875rem;
  }
}
.single-post main .side .archive .month-list li a,
.archive-post main .side .archive .month-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
}
.single-post main .side .archive .month-list .count,
.archive-post main .side .archive .month-list .count {
  margin-left: 5px;
}
@media screen and (max-width: 750px) {
  .single-post main .side .archive .month-list .count,
  .archive-post main .side .archive .month-list .count {
    margin-left: 0.6666666667vw;
  }
}

.single-post main .main .top {
  min-height: 155px;
  padding-bottom: 25px;
}
@media screen and (max-width: 750px) {
  .single-post main .main .top {
    padding-bottom: 3.3333333333vw;
  }
}
.single-post main .main .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25rem;
}
.single-post main .main .data .date {
  font-weight: bold;
  color: #666666;
  font-size: 1rem;
}
.single-post main .main .data .cat {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #666666;
  font-size: 1rem;
}
.single-post main .main .title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-top: 7px;
  letter-spacing: 0;
}
@media screen and (max-width: 750px) {
  .single-post main .main .title {
    font-size: 1.125rem;
    margin-top: 0.9333333333vw;
  }
}
.single-post main .main .photo {
  width: 100%;
  max-height: 489px;
}
.single-post main .main .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-post main .main .main-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 50px;
  text-align: justify;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  margin: 50px 0 70px 0;
}
@media screen and (max-width: 750px) {
  .single-post main .main .main-text {
    margin: 6.6666666667vw 0 9.3333333333vw 0;
    font-size: 0.875rem;
    row-gap: 6.6666666667vw;
  }
}
.single-post main .main .main-text p {
  line-height: 1.8em;
}
.single-post main .main .main-text h2 {
  font-weight: bold;
  font-size: 1.5rem;
}
@media screen and (max-width: 750px) {
  .single-post main .main .main-text h2 {
    font-size: 1.125rem;
  }
}
.single-post main .main .main-text h3 {
  font-weight: bold;
  font-size: 1.125rem;
}
@media screen and (max-width: 750px) {
  .single-post main .main .main-text h3 {
    font-size: 1rem;
  }
}
.single-post main .main .main-text a {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), color-stop(0%, #dfece6));
  background: linear-gradient(transparent 30%, #dfece6 0%);
}
.single-post main .main .main-text figure {
  margin: 15px 0;
}
@media screen and (max-width: 750px) {
  .single-post main .main .main-text figure {
    margin: 2vw 0;
  }
}
.single-post main .main .main-text figcaption {
  font-size: 0.875rem;
}
@media screen and (max-width: 750px) {
  .single-post main .main .main-text figcaption {
    font-size: 0.8125rem;
  }
}
.single-post main .main .main-text blockquote {
  font-size: 1.125rem;
  border-left: 12px solid #dfece6;
  padding-left: 20px;
}
@media screen and (max-width: 750px) {
  .single-post main .main .main-text blockquote {
    font-size: 1rem;
    border-width: 1.6vw;
    padding-left: 2.6666666667vw;
  }
}
.single-post main .main .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-post main .main .tag p {
  font-size: 0.875rem;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  letter-spacing: 0;
}
@media screen and (max-width: 750px) {
  .single-post main .main .tag p {
    font-size: 0.8125rem;
  }
}
.single-post main .main .tag p::before {
  content: "#";
}
.single-post main .main .nav {
  margin-top: 80px;
  height: 40px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .single-post main .main .nav {
    margin-top: 10.6666666667vw;
    height: 5.3333333333vw;
  }
}
.single-post main .main .nav a {
  height: 0;
}
.single-post main .main .nav .btn {
  width: 144px;
  height: 40px;
  border: solid 1px black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
}
@media screen and (max-width: 750px) {
  .single-post main .main .nav .btn {
    font-size: 0.875rem;
    width: 24vw;
    height: 8vw;
  }
}
.single-post main .main .nav .prev {
  left: 0;
}
.single-post main .main .nav .back {
  left: 0;
  right: 0;
  margin: auto;
}
.single-post main .main .nav .next {
  right: 0;
}
.single-post main .side {
  margin-top: 155px;
}

.archive-post main .archive-list {
  width: 100%;
}
.archive-post main .archive-list .item {
  width: 100%;
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  border-bottom: 1px solid #cccccc;
  padding: 15px 0;
}
@media screen and (max-width: 930px) {
  .archive-post main .archive-list .item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 5px;
  }
}
@media screen and (max-width: 750px) {
  .archive-post main .archive-list .item {
    padding: 2vw 0;
    row-gap: 1.3333333333vw;
  }
}
.archive-post main .archive-list .item time p {
  font-weight: bold;
}
.archive-post main .archive-list .item .cat {
  width: 164px;
  height: 30px;
  font-weight: bold;
  background: #dfece6;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media screen and (max-width: 750px) {
  .archive-post main .archive-list .item .cat {
    width: 43.7333333333vw;
    height: 6.6666666667vw;
    border-radius: 0.6666666667vw;
  }
}
.archive-post main .archive-list .item .article {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  text-align: justify;
  position: relative;
}
@media screen and (min-width: 751px) {
  .archive-post main .archive-list .item .article::after {
    background: black;
    content: "";
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .archive-post main .archive-list .item .article:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
@media screen and (max-width: 750px) {
  .archive-post main .archive-list .item .article {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.archive-post main .pagination {
  margin-top: 60px;
}
@media screen and (max-width: 750px) {
  .archive-post main .pagination {
    margin-top: 13.3333333333vw;
  }
}
.archive-post main .pagination .page-numbers {
  border: 1px solid #a1a694;
}

/********************************
about
*********************************/
.page-about main .about {
  width: 750px;
  margin: 0 auto;
  padding-bottom: 35px;
}
@media screen and (max-width: 800px) {
  .page-about main .about {
    width: 92%;
  }
}
@media screen and (max-width: 750px) {
  .page-about main .about {
    padding-bottom: 16vw;
  }
}
.page-about main .about p {
  text-align: justify;
}
.page-about main .about h3 {
  font-size: 2.25rem;
  margin: 85px 0 35px 0;
}
@media screen and (max-width: 750px) {
  .page-about main .about h3 {
    font-size: 2rem;
    margin-top: 11.3333333333vw 0 4.6666666667vw 0;
  }
}
.page-about main .about .p2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 35px;
}
@media screen and (max-width: 750px) {
  .page-about main .about .p2 {
    margin-bottom: 4.6666666667vw;
    font-size: 1.25rem;
  }
  .page-about main .about .p2 .line2 {
    display: block;
    text-align: center;
  }
  .page-about main .about .p2 .line3 {
    display: block;
    text-align: right;
  }
}
.page-about main .about .cover {
  margin: 40px 0;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .page-about main .about .cover {
    margin: 5.3333333333vw 0;
  }
}
.page-about main .about .p5 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 90px 0 35px 0;
}
@media screen and (max-width: 750px) {
  .page-about main .about .p5 {
    font-size: 1.25rem;
    margin: 12vw 0 4.6666666667vw 0;
    text-align: center;
  }
}
.page-about main .about li {
  list-style: decimal;
  list-style-position: inside;
  text-align: justify;
}
.page-about main .publish {
  background: #dfece6;
  padding: 50px 0 90px 0;
}
@media screen and (max-width: 750px) {
  .page-about main .publish {
    padding: 13.3333333333vw 0 16vw 0;
  }
}
.page-about main .publish .wrap {
  width: 750px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 800px) {
  .page-about main .publish .wrap {
    width: 92%;
  }
}
@media screen and (max-width: 750px) {
  .page-about main .publish .wrap {
    row-gap: 8vw;
  }
}
.page-about main .publish h3 {
  font-weight: bold;
  font-size: 1rem;
}
.page-about main .publish p {
  font-size: 0.75rem;
  text-align: justify;
}
.page-about main .publish .reading {
  margin: 20px 0;
}
@media screen and (max-width: 750px) {
  .page-about main .publish .reading {
    margin: 5.3333333333vw 0;
  }
}
.page-about main .publish .recruit {
  font-weight: bold;
  margin-bottom: 10px;
  padding-top: 10px;
  border-top: 1px solid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 750px) {
  .page-about main .publish .recruit {
    margin: 2.6666666667vw 0;
  }
}
.page-about main .publish a {
  width: 222px;
  height: 40px;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
  border: 1px solid;
  margin-bottom: 5px;
}
@media screen and (max-width: 750px) {
  .page-about main .publish a {
    width: 58.9333333333vw;
    height: 10.6666666667vw;
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 751px) {
  .page-about main .publish a:hover {
    opacity: 1;
    color: rgba(0, 0, 0, 0.75);
  }
  .page-about main .publish a:hover img {
    opacity: 0.75;
  }
}
.page-about main .publish a img {
  width: 6px;
  margin-right: 7px;
}
@media screen and (max-width: 750px) {
  .page-about main .publish a img {
    width: 1.6vw;
    margin-right: 1.8666666667vw;
  }
}
.page-about main .publish h4 {
  font-size: 0.875rem;
}
.page-about main .publish .spot-btn {
  max-width: 505px;
  height: 40px;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid;
  padding: 0 15px 0 20px;
}
@media screen and (max-width: 750px) {
  .page-about main .publish .spot-btn {
    height: 10.6666666667vw;
    max-width: 100%;
  }
}
.page-about main .publish .spot-btn p {
  font-size: 0.875rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .page-about main .publish .spot-btn p {
    font-size: 1rem;
  }
}
.page-about main .publish .spot-btn .plus {
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 750px) {
  .page-about main .publish .spot-btn .plus {
    width: 4.6666666667vw;
    height: 4.6666666667vw;
  }
}
.page-about main .publish .spot-btn .minus {
  width: 18px;
  height: 3.5px;
  display: none;
}
@media screen and (max-width: 750px) {
  .page-about main .publish .spot-btn .minus {
    width: 4.6666666667vw;
    height: 0.9333333333vw;
  }
}
.page-about main .publish .check {
  display: none;
}
.page-about main .publish .check:checked ~ .spot-btn .plus {
  display: none;
}
.page-about main .publish .check:checked ~ .spot-btn .minus {
  display: block;
}
.page-about main .publish .check:checked ~ .spot-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-about main .publish .spot-list {
  max-width: 505px;
  background: white;
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: none;
}
@media screen and (max-width: 750px) {
  .page-about main .publish .spot-list {
    padding: 4vw;
    max-width: 100%;
  }
}
.page-about main .publish .spot-list li {
  font-size: 0.75rem;
}
.page-about main .publish .reading .spot-list {
  row-gap: 20px;
}
@media screen and (max-width: 750px) {
  .page-about main .publish .reading .spot-list {
    row-gap: 4vw;
  }
}
.page-about main .publish .reading .spot-list li {
  font-weight: bold;
}
.page-about main .publish .reading .spot-list .sub li {
  font-weight: normal;
  list-style: "・" inside;
}
.page-about main .publish .store,
.page-about main .publish .spot {
  margin: 20px 0;
}
.page-about main .publish .store .spot-btn,
.page-about main .publish .spot .spot-btn {
  margin-top: 15px;
}

.tieup {
  width: 750px;
  padding: 90px 0;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .tieup {
    width: 92%;
  }
}
@media screen and (max-width: 750px) {
  .tieup {
    padding: 12vw 0;
  }
}
.tieup h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .tieup h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 750px) {
  .tieup p {
    text-align: justify;
    font-size: 0.875rem;
  }
}

/********************************
contact
*********************************/
.page-contact .subscribe {
  display: none;
}
.page-contact main .wrap {
  max-width: 750px;
  width: 92%;
  margin: 0 auto;
  text-align: justify;
}
.page-contact main h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .page-contact main h3 {
    margin-bottom: 6.6666666667vw;
  }
}
.page-contact main .link {
  padding: 7px 15px;
  border: 1px solid;
  margin-top: 40px;
  display: block;
}
.page-contact main .contact-form {
  margin: 60px 0 100px 0;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .page-contact main .contact-form {
    margin: 10.6666666667vw 0 20vw 0;
  }
}
.page-contact main .contact-form label {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
}
.page-contact main .error-message,
.page-contact main .confirm-message {
  font-size: 1.25rem;
  font-weight: bold;
  display: none;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .page-contact main .error-message,
  .page-contact main .confirm-message {
    font-size: 1.125rem;
    margin-bottom: 4vw;
  }
}
.page-contact main .error-message {
  color: #700000;
}
.page-contact main .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 750px) {
  .page-contact main .group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page-contact main .group input,
.page-contact main .group textarea {
  border: 1px solid #cccccc;
  padding: 2px 4px 1px;
}
.page-contact main h4 {
  width: 25%;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  text-align: right;
  margin-right: 10px;
}
@media screen and (max-width: 750px) {
  .page-contact main h4 {
    width: 100%;
    text-align: left;
    margin: 0 0 0.6666666667vw 0;
  }
}
.page-contact main h4 .required {
  color: #7d0000;
}
.page-contact main .group {
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .page-contact main .group {
    margin-bottom: 8vw;
  }
}
.page-contact main .form {
  width: 70%;
}
@media screen and (max-width: 750px) {
  .page-contact main .form {
    width: 100%;
  }
}
.page-contact main .form input,
.page-contact main .form textarea {
  width: 100%;
}
.page-contact main .form1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-contact main .form1 .column {
  width: 100px;
}
@media screen and (max-width: 750px) {
  .page-contact main .form1 .column {
    width: 37.3333333333vw;
  }
}
.page-contact main .form1 .column input {
  width: 100%;
}
.page-contact main .form1 .col1 {
  margin-right: 20px;
}
@media screen and (max-width: 750px) {
  .page-contact main .form1 .col1 {
    margin-right: 5.3333333333vw;
  }
}
.page-contact main .form2 .row2 {
  margin-top: 15px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
}
@media screen and (max-width: 750px) {
  .page-contact main .form2 .row2 {
    margin-top: 2.6666666667vw;
  }
}
.page-contact main .form3 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media screen and (max-width: 750px) {
  .page-contact main .form3 span {
    -webkit-column-gap: 1.3333333333vw;
       -moz-column-gap: 1.3333333333vw;
            column-gap: 1.3333333333vw;
  }
}
.page-contact main .form3 span input {
  width: 15%;
}
@media screen and (max-width: 750px) {
  .page-contact main .form3 span input {
    width: 29.8%;
  }
}
.page-contact main textarea {
  height: 125px;
}
@media screen and (max-width: 750px) {
  .page-contact main textarea {
    height: 26.6666666667vw;
  }
}
.page-contact main .submit {
  color: #534d4c;
  border: 1px solid;
  border-radius: 5px;
  width: 197px;
  height: 36px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 750px) {
  .page-contact main .submit {
    width: 46.6666666667vw;
    height: 9.6vw;
    border-radius: 0.6666666667vw;
    font-size: 1.25rem;
  }
}
.page-contact main .mw_wp_form_confirm .confirm-message {
  display: block;
}
.page-contact main .mw_wp_form_confirm .form2 p {
  display: none;
}
.page-contact main .mw_wp_form_complete {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.page-contact main .mw_wp_form_complete .p1 {
  font-size: 1.5rem;
  font-weight: bold;
}

/********************************
law
*********************************/
@media screen and (max-width: 750px) {
  .page-law .page-title {
    font-size: 1.5rem;
  }
}
.page-law main .wrap {
  max-width: 750px;
  width: 92%;
  margin: 0 auto;
}
.page-law main dl {
  text-align: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 45px;
}
@media screen and (max-width: 750px) {
  .page-law main dl {
    margin-bottom: 20vw;
  }
}
.page-law main dt {
  width: 26%;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .page-law main dt {
    width: 100%;
  }
}
.page-law main dd {
  width: 74%;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .page-law main dd {
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
}
.page-law main a {
  text-decoration: underline;
}
.page-law main p {
  text-align: justify;
  margin-bottom: 110px;
}
@media screen and (max-width: 750px) {
  .page-law main p {
    margin-bottom: 26.6666666667vw;
  }
}

/********************************
not-found
*********************************/
.error404 main .wrap {
  max-width: 750px;
  width: 95%;
  margin: 0 auto;
}
.error404 main h3 {
  font-size: 1.5rem;
}
@media screen and (max-width: 750px) {
  .error404 main h3 {
    font-size: 1rem;
  }
}
.error404 main p {
  margin: 30px 0;
  text-align: justify;
}
@media screen and (max-width: 750px) {
  .error404 main p {
    font-size: 0.875rem;
    margin: 6.6666666667vw 0;
  }
}
.error404 main a {
  width: 188px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid;
  margin: 0 auto 110px auto;
}
@media screen and (max-width: 750px) {
  .error404 main a {
    width: 50.1333333333vw;
    height: 10.6666666667vw;
    margin-bottom: 13.3333333333vw;
  }
}