@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.pc {
  display: none;
}
@media (min-width: 992px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media (min-width: 992px) {
  .sp {
    display: none;
  }
}

/*1.0rem=10px*/
html {
  font-size: 62.5%;
}

body {
  background-color: #ffffff;
  color: #101010;
  font-weight: 500;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  overflow-x: hidden;
}

body:has(.is-checked) {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  /*Google Chrome、Safariへの対応*/
}
body:has(.is-checked)::-webkit-scrollbar {
  display: none;
}

img {
  width: 100%;
}

button {
  cursor: pointer;
}

em {
  font-style: normal;
}

input,
label,
a {
  cursor: pointer;
}

a {
  transition: all 0.2s linear 0s;
}
a:hover {
  opacity: 0.7;
}

/***********************************************
header
************************************************/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  color: #000;
  background-color: rgba(255, 255, 255, 0.8);
}

.l-header__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
@media (min-width: 992px) {
  .l-header__items {
    height: auto;
    height: 80px;
    padding-left: 10px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

/***********************************************
header              左               ロゴ*****/
.l-header__left {
  margin-left: 10px;
  margin-right: auto;
}

a.l-header__logo {
  transition: all 0.2s linear 0s;
  display: block;
  width: 130px;
  margin-left: 20px;
}
a.l-header__logo:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  a.l-header__logo {
    width: 150px;
    margin-left: 20px;
  }
}
@media (min-width: 1200px) {
  a.l-header__logo {
    width: 200px;
    margin-left: 30px;
  }
}

/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.l-header__nav-items li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  color: #0f0f0f;
}

.l-header__nav-items li.current a,
.l-header__nav-items li a:hover {
  opacity: 0.7;
}

.l-header__nav-items li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -10px;
  left: 0;
  /*線の形状*/
  width: 100%;
  height: 1px;
  background: #0f0f0f;
  /*アニメーションの指定*/
  transition: all 0.6s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

/*現在地とhoverの設定*/
.l-header__nav-items li.current a::after,
.l-header__nav-items li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

/***********************************************
header       右            *****/
.l-header__nav-items ul {
  display: none;
}
@media (min-width: 992px) {
  .l-header__nav-items ul {
    display: flex;
    align-items: center;
  }
}
.l-header__nav-items ul > li {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 15px;
}
@media (min-width: 992px) {
  .l-header__nav-items ul > li {
    padding: 10px 8px;
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .l-header__nav-items ul > li {
    padding: 10px 14px;
    font-size: 15px;
  }
}
.l-header__nav-items ul > li a {
  transition: all 0.2s linear 0s;
  color: #0f0f0f;
}
.l-header__nav-items ul > li a:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  .l-header__nav-items {
    display: flex;
  }
}

.l-header__insta-icon {
  display: block;
  width: 34px;
  padding: 0;
  margin: 23px 14px 0 0;
}
.l-header__insta-icon.--sp {
  margin-top: 0px;
  position: absolute;
  top: 17px;
  right: 70px;
}
@media (min-width: 992px) {
  .l-header__insta-icon.--sp {
    display: none;
  }
}

/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.l-header__hamburger-menu li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  color: #000000;
}

.l-header__hamburger-menu li.current a,
.l-header__hamburger-menu li a:hover {
  opacity: 1 !important;
}

.l-header__hamburger-menu li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 4px;
  left: 35%;
  transform: translateX(-50%);
  /*線の形状*/
  width: 30%;
  height: 3px;
  background: #0f0f0f;
  /*アニメーションの指定*/
  transition: all 0.6s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

/*現在地とhoverの設定*/
.l-header__hamburger-menu li.current a::after,
.l-header__hamburger-menu li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

/***********************************************
ハンバーガーメニュー
************************************************/
.l-header__items2 {
  max-width: 1200px;
}

.drawer-icon {
  width: 70px;
  height: 70px;
  position: fixed;
  top: 3px;
  right: 0;
  z-index: 1000;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  background: transparent;
  display: block;
}
@media (min-width: 992px) {
  .drawer-icon.--sp {
    display: none;
  }
}
@media (min-width: 992px) {
  .drawer-icon {
    margin-top: 15px;
    position: relative;
  }
}

.drawer-bars {
  display: inline-block;
  width: 30px;
  height: 38px;
  position: relative;
  vertical-align: bottom;
}

.drawer-bar {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  background: #0f0f0f;
  width: 100%;
  height: 4px;
  border-radius: 20px;
  transition: all 0.5s linear 0s;
}
.drawer-bar:nth-of-type(1) {
  top: 0;
}
.drawer-bar:nth-of-type(2) {
  top: 10.25px;
}
.drawer-bar:nth-of-type(3) {
  top: 20.5px;
}
.is-checked .drawer-bar:nth-of-type(1) {
  top: 10px;
  transform: rotate(-45deg);
  background: #0f0f0f;
}
.is-checked .drawer-bar:nth-of-type(2) {
  background: transparent;
}
.is-checked .drawer-bar:nth-of-type(3) {
  top: 10px;
  transform: rotate(45deg);
  background: #0f0f0f;
}

.drawer-content-cover {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transform: translateX(0);
  top: 0;
  left: 0;
  bottom: auto;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  max-width: 100%;
  transition: all 0.5s linear 0s;
  background: #5d595a;
  z-index: 999;
}
.drawer-content-cover.is-checked {
  visibility: visible;
  opacity: 1;
}
.drawer-content-cover p {
  color: #3C3C3C;
}

.l-header__hamburger-menu {
  position: relative;
  z-index: 999;
  background-color: #e2e2e2;
  padding: 1px 0;
}
.l-header__hamburger-menu ul {
  list-style: none;
  padding: 0;
  width: 100%;
  margin: 50px auto 20px;
  z-index: 1;
}
@media (min-width: 992px) {
  .l-header__hamburger-menu ul {
    margin: 0 auto;
    width: 300px;
    max-width: 100%;
  }
}
.l-header__hamburger-menu ul li a {
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  padding: 18px 17px;
  color: #333;
  transition: all 0.2s linear 0s;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
}
.l-header__hamburger-menu ul li a:hover {
  opacity: 0.7;
}

.menu-dorawer-container li:last-child {
  border: solid 2px #fff;
  background-color: #fff;
  margin: 10px 0;
}
.menu-dorawer-container li:last-child a {
  font-weight: bold;
  color: #002a52;
}
.menu-dorawer-container li:nth-last-child(2) {
  border: solid 1px #fff;
  margin: 10px 0 30px 0;
}

.l-header__hamburger-menu ul li {
  font-size: 18px;
}

.l-header__foot-flex ul {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  font-weight: 600;
}
.l-header__foot-flex ul li a {
  display: block;
  padding: 30px 8px;
  color: #cbcbcb;
  font-size: 11px;
}

/***********************************************
ハンバーガーメニュー内の下の方
************************************************/
.l-header__drawer-btns {
  width: 100%;
  padding: 20px 3px;
  background: #fff;
  text-align: center;
}
.l-header__drawer-btns a {
  width: 46%;
  display: inline-block;
  padding: 16px 13px;
  margin: 5px;
  background-color: #0f0f0f;
  color: #fff;
  font-size: 16px;
}
.l-header__drawer-btns a.--black {
  background-color: #332f2d;
}

.l-header__drawer-foot {
  font-size: 14px;
  background-color: #5d595a;
  max-height: 100%;
  text-align: center;
  margin: 0 auto;
  background-size: cover;
}
.l-header__drawer-foot li a {
  color: #fff;
}
.l-header__drawer-foot .l-footer__sns-icons {
  padding-bottom: 50px;
  display: flex !important;
  justify-content: center;
}

.l-header__foot-flex {
  margin: 0px auto;
  font-weight: 500;
}
.l-header__foot-flex li {
  padding: 10px 0;
}
.l-header__foot-flex li a {
  color: #fff !important;
}

.l-header__drawer-foot-wrapper {
  background-color: #5d595a;
  padding: 20px 0;
}

.l-header__mail-icon {
  padding-left: 20px;
  width: 180px;
  margin: 0 auto;
  position: relative;
}
.l-header__mail-icon::before {
  content: "";
  width: 40px;
  height: 30px;
  background-image: url(../img/mail-gold.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 9px;
  left: 0px;
}

/***********************************************
login
************************************************/
.l-header__login {
  font-size: 11px;
  position: relative;
  display: block;
  width: 120px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .l-header__login {
    width: auto;
    margin: 0;
    margin-top: 31px;
  }
}
.l-header__login::before {
  content: "";
  width: 35px;
  height: 50px;
  /* margin-right: 6px; */
  background-image: url(../img/log-in.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -22px;
  margin: 20px 0;
}
@media (min-width: 992px) {
  .l-header__login::before {
    margin: 0;
    top: -33px;
    left: 46%;
    transform: translateX(-50%);
  }
}

/**************?
footer
/*************/
.l-footer {
  padding: 1px 0;
}
.l-footer a {
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.2s linear 0s;
  color: #fff;
  padding: 10px 0;
  display: block;
  font-weight: 400;
}
.l-footer a:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  .l-footer {
    display: block;
    width: 100%;
    color: #ffffff;
    z-index: 900;
    font-size: 15px;
    background-color: #0f0f0f;
  }
}

.l-footer__nav-items ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px auto 0;
}
@media (min-width: 992px) {
  .l-footer__nav-items ul {
    margin: 30px auto 0px;
    flex-wrap: wrap;
  }
}
.l-footer__nav-items ul > li {
  display: block;
}
@media (min-width: 992px) {
  .l-footer__nav-items ul > li {
    padding: 10px 30px;
  }
}

.l-footer__copyright {
  font-size: 10px;
  color: #ffffff;
  display: block;
  font-weight: 400;
  padding: 10px 0 90px;
  background-color: #000;
  text-align: center;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.6px;
}
@media (min-width: 768px) {
  .l-footer__copyright {
    font-size: 15px;
    padding: 10px 0px 10px 0;
  }
}

.l-footer__vertical-line {
  width: 1px;
  height: 110px;
  background-color: #b2b2b2;
}

/***********************************************
    cv ボタン　最下部固定
    ************************************************/
.l-footer-cv {
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 800;
  font-size: 15px;
  font-weight: 700;
  background-color: #ffffff;
  height: 75px;
  width: 100%;
}
@media (min-width: 992px) {
  .l-footer-cv {
    display: none;
  }
}

a.l-footer-cv__btn {
  width: 50%;
  padding: 27px;
  text-align: center;
  border-right: solid 1px #fff;
  line-height: 1.5;
  color: #fff !important;
  display: block;
  width: 50%;
  height: 100%;
  background-color: #0f0f0f;
  padding: 27px 0px;
  font-size: 14px;
}
a.l-footer-cv__btn::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  position: absolute;
  top: 42%;
  right: 10px;
}
@media (min-width: 992px) {
  a.l-footer-cv__btn {
    width: 320px;
    height: 75px;
    right: 0;
    background-color: #0f0f0f;
    color: #333;
    font-size: 16px;
    padding: 25px;
  }
  a.l-footer-cv__btn::after {
    border-color: #0f0f0f;
    right: 20px;
  }
  a.l-footer-cv__btn.--pc {
    padding: 25px;
    background-color: #0f0f0f;
    color: #fff;
  }
  a.l-footer-cv__btn.--pc::after {
    border-color: #fff;
  }
}

@media (min-width: 992px) {
  .l-footer__text-small {
    font-size: 11px;
  }
}

.l-footer-cv__sp {
  display: inline;
}
@media (min-width: 992px) {
  .l-footer-cv__sp {
    display: none;
  }
}

.l-footer__wrapper {
  margin-top: 40px;
  color: #fff;
}

.l-footer__nav {
  margin-top: 30px;
  padding: 15px 0;
}
.l-footer__nav ul {
  display: none;
}
@media (min-width: 992px) {
  .l-footer__nav ul {
    display: flex;
    justify-content: center;
  }
}

.l-footer__nav ul > li {
  font-weight: 700;
}
@media (min-width: 992px) {
  .l-footer__nav ul > li {
    padding: 30px 15px;
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .l-footer__nav ul > li {
    padding: 30px 30px;
    font-size: 22px;
  }
}
.l-footer__nav ul > li a {
  transition: all 0.2s linear 0s;
  /*********フッターナビゲーション文字の色********/
  color: #fff;
}
.l-footer__nav ul > li a:hover {
  opacity: 0.7;
}

.l-footer__logo {
  transition: all 0.2s linear 0s;
  display: block;
}
.l-footer__logo:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  .l-footer__logo {
    width: 99px;
  }
}

.l-footer__info {
  margin: 16px 0 9px 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.65;
  letter-spacing: normal;
  text-align: left;
  color: #333;
}

.l-footer__contact-bg {
  padding: 30px 0 20px;
  margin: 30px 0 0 0;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .l-footer__contact-bg {
    padding: 80px 0;
    margin: 0;
  }
}

.l-footer__sns-icons {
  display: none;
}
@media (min-width: 992px) {
  .l-footer__sns-icons {
    display: flex;
    justify-content: center;
  }
}
.l-footer__sns-icons li {
  width: 34px;
  margin: 20px 20px;
}

.c-inner__center {
  min-width: 330px;
  width: 85%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .c-inner__center {
    width: 80%;
  }
}

.c-inner__left {
  width: 85%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 992px) {
  .c-inner__left {
    width: 80%;
  }
}

.c-inner__flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-inner__flex.--sp_block {
  display: block;
}
@media (min-width: 992px) {
  .c-inner__flex.--sp_block {
    display: flex;
  }
}

/***********************************************
「特集記事」の見出し
************************************************/
.c-heading {
  text-align: left;
  margin: 50px 0 20px;
}
.c-heading.--auther {
  text-align: center;
}
.c-heading.--auther .c-heading__jp::before {
  display: none;
}

.c-heading__top-ja {
  font-size: 40px;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.83;
  letter-spacing: 2.08px;
  text-align: left;
  color: #101010;
  margin-top: 60px;
}
@media (min-width: 992px) {
  .c-heading__top-ja {
    font-size: 52px;
    margin-top: 70px;
  }
}

.c-heading__top-en {
  text-align: left;
  font-family: "Open Sans", "Noto Sans", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  color: #757575;
  font-weight: 600;
  letter-spacing: -0.045em;
  display: block;
  margin: 14px 0 24px 0;
  font-size: 18px;
}
@media (min-width: 992px) {
  .c-heading__top-en {
    font-size: 22px;
    margin: 17px 0 50px 0;
  }
}

/***********************************************
メニューそれぞれの見出し
************************************************/
.c-heading__jp {
  font-size: 26px;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -2px;
  padding-left: 30px;
  color: #000;
  position: relative;
}
@media (min-width: 992px) {
  .c-heading__jp {
    font-size: 40px;
    padding-left: 50px;
  }
}
.c-heading__jp::before {
  content: "";
  background-image: url(../img/2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  width: 23px;
  height: 24px;
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
@media (min-width: 992px) {
  .c-heading__jp::before {
    width: 40px;
    height: 40px;
  }
}
.c-heading__jp.--contact {
  letter-spacing: 0em;
  color: #fff;
}
.c-heading__jp.--contact::before {
  background-image: none;
}
.c-heading__jp.--contact + .c-heading__en {
  letter-spacing: 0em;
  color: #fff;
  padding: 5px 0;
}

.c-heading__en {
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  padding: 0px 0 0px;
  font-size: 16px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1px;
  color: #757575;
}
@media (min-width: 992px) {
  .c-heading__en {
    font-size: 18px;
    padding: 0px 0 30px;
  }
}

.c-heading__section-bar {
  width: 100%;
  height: 1px;
  background-color: #222;
}

.c-icon {
  position: relative;
}
.c-icon::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.c-icon::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

/***********************************************
左から右へグイっと登場
************************************************/
.c-icon__from-left {
  animation: fadeIn 1s cubic-bezier(0.9, 0, 0.2, 1) 0.5s 1 normal backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.c-icon__keyword {
  position: absolute;
  color: transparent;
}

/***********************************************
文字の両サイドに画像配置
************************************************/
.c-icon__both-side {
  position: relative;
}
.c-icon__both-side::before, .c-icon__both-side::after {
  content: "";
  display: inline-block;
  width: 10%;
  aspect-ratio: 100/133;
  background-image: url();
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.c-icon__both-side::after {
  background-image: url();
}

/***********************************************
アンダーライン
************************************************/
.c-icon__marker {
  background: linear-gradient(transparent 60%, yellow 30%);
  display: inline-block;
}

.c-icon__under-line {
  border-bottom: 10px solid #000;
  display: inline-block;
  padding-bottom: 10px;
}

/***********************************************
スクロール
************************************************/
.c-icon__scroll-bar {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  overflow-y: auto;
}
.c-icon__scroll-bar::-webkit-scrollbar {
  width: 5px;
  height: 2px;
  border-radius: 10px;
}
.c-icon__scroll-bar::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #D5D5D5;
}
.c-icon__scroll-bar::-webkit-scrollbar-thumb {
  background-color: #969696;
}

/***********************************************
read more　線の色が変わる
************************************************/
/*== 線の上を別の線が伸びる */
.c-button__more {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  color: #fff;
  padding: 10px 10px 10px 10px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}

/*線の設定*/
.c-button__more::before,
.c-button__more::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  /*線の形状*/
  background: #333;
  width: 50%;
  height: 2px;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
}

.c-button__more.--white::before,
.c-button__more.--white::after {
  /*線の形状*/
  background: #fff;
}

/*hover時に伸びる線の形状*/
.c-button__more::after {
  width: 0;
  background: #ffffff;
}

.c-button__more.--white::after {
  background: #333;
}

/*hover時に100%に伸びる*/
.c-button__more:hover::after {
  width: 50%;
}

/*矢印の設定*/
.c-button__more span {
  position: relative;
}

.c-button__more span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 0.6em;
  right: -36px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}

.c-button__more.--white span::after {
  border-color: #fff;
}

/*hover時に矢印が移動*/
.c-button__more:hover span::after {
  right: -41px;
}

.--side {
  /*== 線の上を別の線が伸びる */
  /*線の設定*/
  /*hover時に伸びる線の形状*/
  /*hover時に100%に伸びる*/
  /*矢印の設定*/
  /*hover時に矢印が移動*/
}
.--side .c-button__more {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  color: #fff;
  padding: 10px 80px 10px 20px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}
@media (min-width: 992px) {
  .--side .c-button__more {
    padding-right: 137px;
  }
}
.--side .c-button__more::before,
.--side .c-button__more::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 105px;
  background: #5d595a;
  width: 24%;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .--side .c-button__more::before,
  .--side .c-button__more::after {
    bottom: 23px;
    left: 129px;
  }
}
.--side .c-button__more.--white::before,
.--side .c-button__more.--white::after {
  /*線の形状*/
  background: #fff;
}
.--side .c-button__more::after {
  width: 0;
  background: #ffffff;
}
.--side .c-button__more.--white::after {
  background: #000000;
}
.--side .c-button__more:hover::after {
  width: 24%;
}
.--side .c-button__more span {
  position: relative;
}
.--side .c-button__more span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 0.6em;
  right: -36px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}
.--side .c-button__more.--white span::after {
  border-color: #fff;
}
.--side .c-button__more:hover span::after {
  right: -41px;
}

.c-button__viewmore {
  font-size: 18px;
  margin: 40px 0 60px;
  font-weight: 500;
  padding-right: 50px;
  letter-spacing: 0.96px;
  text-align: right;
  color: #101010;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  position: relative;
}
@media (min-width: 992px) {
  .c-button__viewmore {
    font-size: 24px;
  }
}
.c-button__viewmore::before {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(../img/view-more-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -10px;
  transition: all 0.2s linear 0s;
  right: 0px;
}
.c-button__viewmore:hover:before {
  right: -10px;
}

/* ↑ この記述はリセット */
.wrap_slider {
  width: 100%;
}

.slider {
  width: 100%;
  height: 100%;
}

.slider picture {
  width: 100%;
  object-fit: cover;
  padding: 10px 10px 20px;
  display: block;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  vertical-align: bottom;
}

/* ↑ この記述はリセット */
.wrap_slider {
  width: 100%;
}

.slider li img {
  width: 100%;
  height: auto;
  padding: 10px 10px 20px;
}

.slick-prev:before,
.slick-next:before {
  color: #101010;
  z-index: 1;
}

.slider .slick-dots {
  bottom: 0;
  display: flex;
  justify-content: space-between;
}

.slider .slick-dots li {
  position: relative;
  display: inline-block;
  width: 33.3333333333%;
  height: 5px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background: #ccc;
  overflow: hidden;
  transition: all 0.2s linear 0s;
}

.slider .slick-dots li.slick-active button {
  background: #101010;
  width: 100%;
}

.slider .slick-dots li button:before {
  content: none;
}

.next-arrow:before,
.prev-arrow:before {
  content: "" !important;
  width: 30px !important;
  height: 30px !important;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
}
@media (min-width: 992px) {
  .next-arrow:before,
  .prev-arrow:before {
    left: 18%;
    width: 50px !important;
    height: 50px !important;
  }
}

.next-arrow:before {
  background: url(../img/arrow-left.png) !important;
  background-size: contain !important;
}

.prev-arrow:before {
  background: url(../img/arrow-right.png) !important;
  background-size: contain !important;
  left: auto;
  right: 0%;
}
@media (min-width: 992px) {
  .prev-arrow:before {
    right: 18%;
  }
}

/***************
*トップページ「　mv　」セクション
****************/
.p-top__s1-mv-section {
  margin-top: 64px;
}
@media (min-width: 992px) {
  .p-top__s1-mv-section {
    margin-top: 80px;
  }
}

.p-top__mv {
  padding: 300px 20px 100px;
  background-image: url(../img/mv2.jpg);
  background-size: cover;
  margin: 80px auto 0 0;
}
@media (min-width: 992px) {
  .p-top__mv {
    padding: 300px 0 150px;
    max-width: none;
  }
}
.p-top__mv.--1 {
  background-image: url(../img/mv1.jpg);
}

.p-top__s1__black-text {
  background-color: #252527;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 10px 0 15px;
  font-size: 11px;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .p-top__s1__black-text {
    padding: 20px 0;
    font-size: 14px;
  }
}
.p-top__s1__black-text a {
  color: #fff;
  border-bottom: 1px solid #fff;
}

/***************
*トップページ「　特集記事」セクション
****************/
.p-top__feature-items {
  display: flex;
  justify-content: space-between;
}
.p-top__feature-items.--wrapper-r {
  display: block;
}
@media (min-width: 992px) {
  .p-top__feature-items.--wrapper-r {
    display: flex;
  }
}
.p-top__feature-items.--wrapper-l {
  display: block;
}
@media (min-width: 992px) {
  .p-top__feature-items.--wrapper-l {
    display: flex;
    flex-direction: row-reverse;
  }
}

.p-top__s2-feature-section .p-top__feature-items {
  display: block;
}
@media (min-width: 992px) {
  .p-top__s2-feature-section .p-top__feature-items {
    display: flex;
    justify-content: space-between;
  }
}

.p-top__feature-item {
  padding: 5px;
}
@media (min-width: 992px) {
  .p-top__feature-item {
    width: 48%;
  }
  .p-top__feature-item.--large {
    width: 50%;
    flex-shrink: 0;
  }
  .p-top__feature-item.--large.--r {
    padding-right: 30px;
  }
  .p-top__feature-item.--large.--l {
    padding-left: 30px;
  }
}

.p-top__feature-article-title {
  margin: 15px 0px 0px 0px;
  font-size: 17px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.64;
  letter-spacing: normal;
  text-align: left;
  color: #101010;
}
@media (min-width: 992px) {
  .p-top__feature-article-title {
    font-size: 22px;
  }
}
.p-top__feature-article-title.--small {
  font-size: 13px;
}
@media (min-width: 992px) {
  .p-top__feature-article-title.--small {
    font-size: 16px;
  }
}

.p-top__feature-tags {
  display: block;
  margin: 20px 0;
}
@media (min-width: 992px) {
  .p-top__feature-tags {
    display: flex;
    align-items: center;
    margin: 20px 0;
  }
}

.p-top__feature-cat {
  display: inline-block;
  padding: 5px 10px 5px 10px;
  border-radius: 17.5px;
  background-color: #101010;
  font-size: 13px;
  letter-spacing: 0.72px;
  text-align: center;
  color: #fff;
}
@media (min-width: 992px) {
  .p-top__feature-cat {
    padding: 8px 36px 9px 35px;
    font-size: 18px;
  }
}

.p-top__feature__date {
  width: 61px;
  height: 10px;
  font-size: 12px;
  font-weight: 500;
  padding: 0 5px;
  letter-spacing: 0.52px;
  color: #757575;
  font-family: "Open Sans", sans-serif;
  margin-top: 8px;
}
@media (min-width: 992px) {
  .p-top__feature__date {
    font-size: 13px;
    padding: 0 15px;
    margin-top: 0;
  }
}

.p-top__feature-tags.--small .p-top__feature-cat {
  padding: 8px 12px;
  font-size: 9px;
}
@media (min-width: 992px) {
  .p-top__feature-tags.--small .p-top__feature-cat {
    font-size: 11px;
  }
}

.p-top__feature-tags.--large .p-top__feature-cat {
  padding: 8px 18px;
  font-size: 14px;
}

/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「 監修 AUTHER」セクション
****************/
.p-top__s7-auther-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, 220px);
  justify-content: center;
  grid-gap: 1rem;
}
.p-top__s7-auther-items.--sp_block {
  display: block;
}
@media (min-width: 992px) {
  .p-top__s7-auther-items.--sp_block {
    display: flex;
  }
}

.p-top__s7-auther-item {
  font-size: 13px;
  color: #757575;
  line-height: 1.75em;
  margin: 20px;
  width: 200px;
}
.p-top__s7-auther-item .name {
  font-size: 18px;
  color: #101010;
  font-weight: 700;
}
.p-top__s7-auther-item .position {
  text-decoration: underline;
  margin-bottom: 10px;
}
.p-top__s7-auther-item .auther-more {
  font-size: 14px;
  padding: 6px 6px 6px 40px;
  background-color: #000;
  position: relative;
}
.p-top__s7-auther-item .auther-more a {
  color: #fff;
}
.p-top__s7-auther-item .auther-more::before {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url(../img/arrow-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}

.p-top__s7-auther-img {
  width: 200px;
  margin-bottom: 10px;
}

/***************
*トップページ「　p-top__s8-banner-img　」セクション
****************/
.p-top__s8-banner-section {
  background-color: #363636;
  padding: 80px 0;
}
.p-top__s8-banner-section .p-top__s7-auther-items {
  justify-content: space-between;
}

.p-top__s8-banner-img {
  margin: 0px 0 20px;
}
@media (min-width: 992px) {
  .p-top__s8-banner-img {
    width: 47%;
  }
}

/***************
*トップページ「ログイン」セクション
****************/
.p-top__s9-login-section {
  background-color: #E2E2E2;
  padding: 50px 0;
}

.p-top__s9-left-box {
  width: 100%;
}
@media (min-width: 992px) {
  .p-top__s9-left-box {
    width: 50%;
  }
}
.p-top__s9-left-box span {
  font-size: 60px;
  font-family: "Open Sans", sans-serif;
  letter-spacing: -1px;
  line-height: 0.72;
}
.p-top__s9-left-box h2 {
  font-size: 16px;
  padding: 10px 0 30px;
}
.p-top__s9-left-box p {
  line-height: 1.75;
  font-size: 16px;
}

.p-top__s9-right-box {
  width: 100%;
  background-color: #fff;
  padding: 10px 25px 20px;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .p-top__s9-right-box {
    margin-top: 0;
    width: 50%;
    padding: 20px 50px 30px;
  }
}
.p-top__s9-right-box label, .p-top__s9-right-box input {
  display: block;
}

input {
  width: 100%;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  font-size: 15px;
  background-color: #F4F4F4;
  padding: 10px 19px;
  border: none;
  border-radius: 4px;
}
input::placeholder {
  color: #B4B4B4;
}
input:focus {
  border: 1px solid #4877B0;
  outline: 0;
}
@media (min-width: 992px) {
  input {
    font-size: 18px;
    width: 100%;
    margin: 0;
  }
}

label {
  font-size: 15px;
  font-weight: 700;
  padding: 10px 0;
  margin: 10px 0 0 0;
}

.p-top__s9-submit {
  width: 220px;
  text-align: center;
  display: block;
  margin: 30px auto 0;
  padding: 18px 3px 18px 0;
  border-radius: 26px;
  background-color: #101010;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  position: relative;
}
@media (min-width: 992px) {
  .p-top__s9-submit {
    width: 293px;
    padding: 18px 0px;
  }
}
.p-top__s9-submit::before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../img/white-right-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 55%;
  right: 10px;
  transform: translateY(-50%);
}

/***************
*トップページ「　　」セクション
****************/
.p-top__s10-channel-section {
  padding: 70px 0 0px;
}
.p-top__s10-channel-section h2 {
  font-size: 28px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.p-top__s10-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, 150px);
  justify-content: flex-start;
  grid-gap: 1rem;
}
@media (min-width: 992px) {
  .p-top__s10-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.p-top__s10-items.--tag {
  display: flex;
  flex-wrap: wrap;
}

.p-top__s10-item {
  font-size: 16px;
  color: #757575;
  margin: 20px 10px;
}
@media (min-width: 992px) {
  .p-top__s10-item {
    margin: 20px 30px;
  }
}
.p-top__s10-item h3 {
  font-weight: 700;
  color: #404040;
}
.p-top__s10-item ul {
  padding-left: 10px;
}
.p-top__s10-item li {
  position: relative;
  margin: 10px 0px;
  padding-left: 15px;
  font-size: 15px;
}
.p-top__s10-item li::before {
  content: "";
  width: 7px;
  height: 10px;
  border-left: 2px solid #757575;
  border-bottom: 2px solid #757575;
  position: absolute;
  top: 0;
  left: 0;
}

/***********************************************
tag
************************************************/
.p-top__s10-tag-section {
  padding: 50px 0 70px;
}
.p-top__s10-tag-section h2 {
  font-size: 28px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.p-top__s10-tag-wrapper {
  width: 100%;
  margin-top: 10px;
}
.p-top__s10-tag-wrapper h2 {
  font-size: 28px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.p-top__s10-tag-wrapper li {
  padding: 10px 40px 10px 0;
  font-size: 15px;
}
