@charset "UTF-8";
@import "normalize.css";
@import "style_custom.css";

html {
  /*font-family: 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;*/
  font-family: "メイリオ", Meiryo, Osaka, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
  font-size: 87.5%;
  line-height: 1.5;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
dl,
ol {
  margin-top: 0;
}

ul,
ol {
  padding-left: 0;
}

li {
  list-style-type: none;
}

a {
  color: #333;
}

img {
  max-width: 100%;
  vertical-align: middle;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

dd {
  margin-left: 0;
}

/*
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://example.com/MaterialIcons-Regular.eot);
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(https://example.com/MaterialIcons-Regular.woff2) format('woff2'),
    url(https://example.com/MaterialIcons-Regular.woff) format('woff'),
    url(https://example.com/MaterialIcons-Regular.ttf) format('truetype');
}
*/
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: inherit; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: "liga";
}
/** Common **/
button.login {
  display: block;
  position: relative;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  background-color: #00164b;
  color: #fff;
  border-radius: 4px;
  border: none;
  font-size: 24px;
  font-weight: bold;
  padding: 0 80px;
  line-height: 62px;
  cursor: pointer;
}
button.login:after {
  position: absolute;
  top: 43%;
  right: 15px;
  width: 5px;
  height: 10px;
  content: "";
  background: url(../images/ico-button.png) no-repeat;
}
button.login:hover {
  background-color: rgb(130, 0, 25);
}
button.charge {
  display: block;
  position: relative;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  background-color: #5b8200;
  color: #fff;
  border-radius: 4px;
  border: none;
  font-size: 24px;
  font-weight: bold;
  padding: 0px 35px 0px 20px;
  line-height: 62px;
  cursor: pointer;
}
button.charge:after {
  position: absolute;
  top: 43%;
  right: 15px;
  width: 5px;
  height: 10px;
  content: "";
  background: url(../images/ico-button.png) no-repeat;
}
button.charge:hover {
  background-color: rgb(130, 0, 25);
}

button.group_charge {
  display: block;
  position: relative;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  background-color: #008268;
  color: #fff;
  border-radius: 4px;
  border: none;
  font-size: 24px;
  font-weight: bold;
  padding: 0px 35px 0px 20px;
  line-height: 62px;
  cursor: pointer;
}
button.group_charge:after {
  position: absolute;
  top: 43%;
  right: 15px;
  width: 5px;
  height: 10px;
  content: "";
  background: url(../images/ico-button.png) no-repeat;
}
button.group_charge:hover {
  background-color: rgb(130, 0, 25);
}

button.training {
  display: block;
  position: relative;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  background-color: #993400;
  color: #fff;
  border-radius: 4px;
  border: none;
  font-size: 24px;
  font-weight: bold;
  padding: 0px 35px 0px 20px;
  line-height: 62px;
  cursor: pointer;
}
button.training:after {
  position: absolute;
  top: 43%;
  right: 12px;
  width: 5px;
  height: 10px;
  content: "";
  background: url(../images/ico-button.png) no-repeat;
}
button.training:hover {
  background-color: rgb(130, 0, 25);
}

button.login-admin {
  display: block;
  position: relative;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  background-color: rgb(0, 75, 25);
  color: #fff;
  border-radius: 4px;
  border: none;
  font-size: 24px;
  font-weight: bold;
  padding: 12px 80px;
  cursor: pointer;
}
button.login-admin:after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 5px;
  height: 10px;
  content: "";
  background: url(../images/ico-button.png) no-repeat;
}
button.login-admin:hover {
  background-color: rgb(0, 50, 15);
}

button.contact {
  display: block;
  position: relative;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  background-color: #001a82;
  color: #fff;
  border-radius: 4px;
  border: none;
  font-size: 24px;
  font-weight: bold;
  padding: 15px 80px;
  cursor: pointer;
}
button.contact:hover {
  background-color: rgb(130, 0, 25);
}

br.for_pc {
  display: block;
}
br.for_sp {
  display: none;
}

@media screen and (max-width: 35.5em) {
  button.contact {
    padding: 15px 25px;
  }
  button.contact span {
    display: inline-block;
  }
  br.for_pc {
    display: none;
  }
  br.for_sp {
    display: block;
  }
}

/** Header **/
header {
  position: relative;
  padding: 16px 0 0;
}

header .header-wrapper {
  width: 1000px;
  margin: 0 auto;
}

header h1 {
  display: inline-block;
  margin-bottom: 0;
}

header h1 a {
  display: inline-block;
  /* -webkit-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out; */
}

header h1 a:hover {
  opacity: 0.8;
}

header .header-wrapper button.header-button.login {
  float: right;
  font-size: 18px;
  padding: 0 25px;
  line-height: 46px;
}

header .header-wrapper button.header-button.login:after {
  margin-left: 6px;
}

header .header-wrapper button.header-button.charge {
  float: right;
  font-size: 18px;
  padding: 0 25px;
  line-height: 46px;
}

header .header-wrapper button.header-button.charge:after {
  margin-left: 20px;
}

header .header-wrapper button.header-button.group_charge {
  float: right;
  font-size: 18px;
  padding: 0 25px;
  line-height: 46px;
}

header .header-wrapper button.header-button.group_charge:after {
  margin-left: 20px;
}

header .header-wrapper button.header-button.training {
  float: right;
  font-size: 18px;
  padding: 0 25px;
  line-height: 46px;
}

header .header-wrapper button.header-button.training:after {
  margin-left: 20px;
}

/** ~10月末 */
header .header-wrapper button.header-button.login {
  padding: 6px 25px 3px 15px;
  line-height: 44px;
}

header .header-wrapper button.header-button.login .supplementation {
  font-size: 0.9em;
}

header .header-wrapper button.header-button.login:after {
  right: 12px;
}
header .header-wrapper button.header-button.charge {
  padding: 6px 15px 3px 0px;
  line-height: 44px;
  margin-right: 20px;
  width: 180px;
}

header .header-wrapper button.header-button.charge .supplementation {
  font-size: 0.9em;
}

header .header-wrapper button.header-button.charge:after {
  right: 12px;
}

header .header-wrapper button.header-button.group_charge {
  padding: 6px 15px 3px 0px;
  line-height: 44px;
  margin-right: 20px;
  width: 180px;
}

header .header-wrapper button.header-button.group_charge .supplementation {
  font-size: 0.9em;
}

header .header-wrapper button.header-button.group_charge:after {
  margin-left: 20px;
}

header .header-wrapper button.header-button.training {
  padding: 6px 15px 3px 0px;
  line-height: 44px;
  margin-right: 20px;
  width: 180px;
}

header .header-wrapper button.header-button.training .supplementation {
  font-size: 0.9em;
}

header .header-wrapper button.header-button.training:after {
  margin-left: 20px;
}
/** ~10月末 */

header nav#menu_pc {
  width: 100%;
  height: 20px;
  background: #eee;
  margin-top: 10px;
  padding: 8px 0;
}

header nav#menu_pc ul {
  font-size: 16px;
  width: 1000px;
  margin: 0 auto;
}

header nav#menu_pc li {
  float: left;
  margin-left: 20px;
}

header nav#menu_pc ul a {
  display: inline-block;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  text-decoration: none;
}

header nav#menu_pc ul a:before {
  margin-right: 5px;
  content: "▼";
  vertical-align: middle;
  font-size: 0.8em;
}

header nav#menu_pc ul a:hover {
  text-decoration: underline;
  color: #6f0013;
}

header nav#menu_pc ul a:hover:before {
  text-decoration: none;
}

header nav#menu_sp {
  display: none;
  width: 70%;
  height: 100%;
  background: #a0a0a0;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 19;
  box-shadow: 5px -5px 10px 5px rgba(0, 0, 0, 0.1) inset;
}

header nav#menu_sp ul {
  margin-top: 60px;
  margin-left: 20%;
}

header nav#menu_sp li {
  list-style-type: disc;
}

header nav#menu_sp ul li a {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

header nav#menu_sp button.sp-sidebar-button.login {
  font-size: 18px;
  line-height: 46px;
  padding: 0 25px;
  margin-left: 20px;
}

/** ~10月末 */
header nav#menu_sp button.sp-sidebar-button.login {
  padding: 10px 10px 6px;
  line-height: 22px;
  margin: 36px auto;
  width: 180px;
}

header nav#menu_sp button.sp-sidebar-button.login .supplementation {
  font-size: 0.6em;
}

header nav#menu_sp button.sp-sidebar-button.login:after {
  right: 10px;
  top: 15px;
}
header nav#menu_sp button.sp-sidebar-button.charge {
  font-size: 18px;
  line-height: 46px;
  padding: 0 25px;
  margin-left: 20px;
}

header nav#menu_sp button.sp-sidebar-button.charge {
  padding: 10px 10px 6px;
  line-height: 22px;
  margin: 36px auto;
  width: 180px;
}

header nav#menu_sp button.sp-sidebar-button.charge .supplementation {
  font-size: 0.6em;
}

header nav#menu_sp button.sp-sidebar-button.charge:after {
  right: 10px;
  top: 15px;
}

header nav#menu_sp button.sp-sidebar-button.group_charge {
  font-size: 18px;
  line-height: 46px;
  padding: 0 25px;
  margin-left: 20px;
}

header nav#menu_sp button.sp-sidebar-button.group_charge {
  padding: 10px 10px 6px;
  line-height: 22px;
  margin: 36px auto;
  width: 180px;
}

header nav#menu_sp button.sp-sidebar-button.group_charge .supplementation {
  font-size: 0.6em;
}

header nav#menu_sp button.sp-sidebar-button.group_charge:after {
  right: 10px;
  top: 15px;
}

header nav#menu_sp button.sp-sidebar-button.training {
  font-size: 18px;
  line-height: 46px;
  padding: 0 25px;
  margin-left: 20px;
}

header nav#menu_sp button.sp-sidebar-button.training {
  padding: 10px 10px 6px;
  line-height: 22px;
  margin: 36px auto;
  width: 180px;
}

header nav#menu_sp button.sp-sidebar-button.training .supplementation {
  font-size: 0.6em;
}

header nav#menu_sp button.sp-sidebar-button.training:after {
  right: 10px;
  top: 15px;
}

header #sp-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  position: fixed;
  top: 14px;
  right: 10px;
  z-index: 20;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  background-color: #a0a0a0;
}

header #sp-menu-button span {
  display: block;
  background: #fff;
  width: 24px;
  height: 2px;
  position: absolute;
  left: 9px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

header #sp-menu-button span:first-child {
  top: 12px;
}

header #sp-menu-button span:nth-child(2) {
  margin-top: -1px;
  top: 50%;
}

header #sp-menu-button span:last-child {
  bottom: 12px;
}

header #sp-menu-button.active span:first-child {
  -webkit-transform: translateY(8px) rotate(45deg);
  -moz-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

header #sp-menu-button.active span:nth-child(2) {
  opacity: 0;
}

header #sp-menu-button.active span:last-child {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -moz-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

@media screen and (max-width: 35.5em) {
  header {
    width: 100%;
    padding: 0;
  }
  header h1 {
    width: 90%;
    margin: 10px 5% 10px 5%;
  }
  header .header-wrapper {
    width: auto;
  }
  header button.header-button.login {
    display: none;
  }
  header button.header-button.charge {
    display: none;
  }
  header nav#menu_pc {
    display: none;
  }
  header nav#menu_sp {
    display: block;
  }
  header #sp-menu-button {
    display: block;
  }
  .following-wrapper {
    display: none;
  }
  .following-wrapper button {
    display: none;
  }

  .following-wrapper a {
    display: none;
  }
}

@media only screen and (orientation: landscape) {
  header nav#menu_sp li {
    margin-right: 30px;
    float: left;
  }
}
input:first-of-type:checked ~ .slider-frame ul {
  left: 90px;
}

/** Eye Catch **/

.slider-gallery {
  position: relative;
  width: 700px;
  height: 300px;
  margin: 10px auto;
  padding: 10px 0;
}
#slider-gallery .slider-frame {
  position: relative;
  height: 280px;
  /*overflow: hidden;*/
  margin-bottom: 10px;
}
#slider-gallery .slider-frame ul {
  position: absolute;
  top: 0;
  left: -110px;
  width: 1620px;
  margin: 0;
}
#slider-gallery .slider-frame ul li {
  float: left;
  width: 520px;
  margin-right: 20px;
}
#slider-gallery .slide-frame ul li:last-child {
  margin-right: 0;
}

.slider-frame a.bu2 {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 25%;
  left: 75%;
}
.slider-frame a.bu1 {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 25%;
  right: 75%;
}
.slider-navi li {
  float: left;
}

/** Body Common  **/
main .contents {
  width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 30px;
}

main .contents:after {
  display: block;
  content: "";
  clear: both;
}

main .contents .login-button-area {
  margin: 20px 0 30px;
  text-align: center;
}
main .contents button.content-button.login {
  /*display: inline-block;*/ /*todo 一回普段は消してみる*/
  display: none;
  margin: 0 15px;
  vertical-align: middle;
  padding: 10px 80px 6px;
}
main .contents .charge-button-area {
  margin-top: 30px;
  text-align: center;
}
main .contents button.content-button.charge {
  /*display: inline-block;*/ /*todo 一回普段は消してみる*/
  display: none;
  margin: 0 15px;
  vertical-align: middle;
  padding: 10px 80px 6px;
}

main .contents button.content-button.group_charge {
  /*display: inline-block;*/ /*todo 一回普段は消してみる*/
  display: none;
  margin: 0 15px;
  vertical-align: middle;
  padding: 10px 80px 6px;
}

main .contents button.content-button.training {
  /*display: inline-block;*/ /*todo 一回普段は消してみる*/
  display: none;
  margin: 0 15px;
  vertical-align: middle;
  padding: 10px 80px 6px;
}

main .contents button.content-button.login-admin {
  display: inline-block;
  margin: 0 15px;
  vertical-align: middle;
}

main .contents button.content-button.login .supplementation {
  font-size: 0.9em;
}

main .contents button.content-button.login:after {
  right: 12px;
}
main .contents button.content-button.charge .supplementation {
  font-size: 0.9em;
}

main .contents button.content-button.charge:after {
  right: 12px;
}

main .contents button.content-button.group_charge .supplementation {
  font-size: 0.9em;
}

main .contents button.content-button.group_charge:after {
  right: 12px;
}

main .contents button.content-button.training .supplementation {
  font-size: 0.9em;
}

main .contents button.content-button.training:after {
  right: 12px;
}

main .contents h3 {
  padding-left: 0.5em;
  font-size: 24px;
  color: #6f0013;
  border-bottom: solid 3px #6f0013;
  background: -webkit-gradient(
    radial,
    100% 0%,
    0,
    100% 0%,
    300,
    color-stop(0.7, #fff),
    color-stop(0, #6f0013)
  );
  background: -webkit-radial-gradient(100% 0%, circle, #6f0013 50%, #fff 78%);
  background: -moz-radial-gradient(100% 0%, circle, #6f0013 0%, #fff 70%);
  background: -o-radial-gradient(100% 0%, circle, #6f0013 0%, #fff 70%);
  background: -ms-radial-gradient(100% 0%, circle, #6f0013 0%, #fff 70%);
  background: radial-gradient(100% 0%, circle, #6f0013 0%, #fff 70%);
}
main .contents h3:before {
  content: none;
  margin-right: 3px;
  font-size: 20px;
  color: #6f0013;
}

main section {
  padding: 40px 0 0;
  margin-bottom: 50px;
}

main section:first-of-type {
  padding: 50px 0 0;
}

main section .page-top-link-area {
  padding: 15px 0 0;
  margin-bottom: 0;
  text-align: right;
}

main section .page-top-link-area a:hover {
  color: #6f0013;
}

.annotation {
  margin-top: 10px;
  padding: 10px 30px;
  background: #eee;
  border-radius: 8px;
}
.annotation p {
  display: table-row;
}
.annotation p:before {
  content: none;
  display: table-cell;
  width: 30px;
  text-align: center;
}

@media screen and (max-width: 35.5em) {
  main {
    width: 100%;
    position: absolute;
  }

  main .contents {
    width: 100%;
  }

  main .contents .contents-wrapper {
    padding: 0 20px;
  }

  main .contents button.content-button.login,
  main .contents button.content-button.login-admin {
    width: 100%;
    padding: 0;
    margin: 0 auto 25px;
    display: block;
  }

  main .contents button.content-button.charge {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    display: block;
  }

  main .contents button.content-button.group_charge {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    display: block;
  }

  main .contents button.content-button.training {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    display: block;
  }

  button.login,
  button.charge,
  button.group_charge,
  button.training {
    font-size: 16px;
    line-height: 48px;
  }

  main .contents-wrapper .app-price-canvas {
    padding: 0;
  }

  main .contents-wrapper .app-price-canvas .login-button-area {
    margin: 20px auto 0px;
  }

  main .contents button.content-button.login-admin {
    margin-top: 5px;
  }

  main .contents h3 {
    background: -webkit-gradient(
      radial,
      100% 0%,
      0,
      100% 0%,
      300,
      color-stop(0.4, #fff),
      color-stop(0, #6f0013)
    );
    background: -webkit-radial-gradient(100% 0%, circle, #6f0013 0%, #fff 40%);
    background: -moz-radial-gradient(100% 0%, circle, #6f0013 0%, #fff 40%);
    background: -o-radial-gradient(100% 0%, circle, #6f0013 0%, #fff 40%);
    background: -ms-radial-gradient(100% 0%, circle, #6f0013 0%, #fff 40%);
    background: radial-gradient(100% 0%, circle, #6f0013 0%, #fff 40%);
  }

  .annotation {
    padding: 15px 15px 15px 10px;
  }
}

/** Infomation  **/
.info .item {
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.info .item time,
.info .item span,
.info .item h4 {
  display: inline-block;
}

.info .item time {
  font-size: 16px;
  width: 180px;
}

.info__tag {
  font-size: 14px;
  width: 80px;
  margin-right: 10px;
  text-align: center;
  background-color: #eee;
  color: #6f0013;
  font-weight: bold;
  border-radius: 4px;
  vertical-align: top;
}

.info__tag.info__tag--topics {
}

.info__tag.info__tag--event {
}

.info__tag.info__tag--release {
}

.info__tag.info__tag--report {
}

.info .item p {
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 0;
  vertical-align: top;
  word-break: break-all;
}

/*.info .item a:after {
  display: inline-block;
  width: 17px;
  height: 14px;
  margin-left: 8px;
  content: '';
  -webkit-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  background: url(../images/ico-blank.png) no-repeat;
}*/

.info .item a.inner:after {
  content: none;
}

.info .item a:hover {
  text-decoration: none;
}

.info .item a:hover:after {
  opacity: 0.6;
}

@media screen and (max-width: 35.5em) {
  .info .item {
    padding: 20px 15px;
  }
}

/** About  **/
.about .main-text {
  margin-top: 22px;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 36px;
  text-align: center;
}

.about .features {
  display: table;
  width: 95%;
  margin: 0px auto;
}
.about .features > * {
  display: table-row;
}
.about .features > * > * {
  display: table-cell;
  vertical-align: middle;
  padding: 10px;
  height: 120px;
  background: #f4f8fd;
  border-top: #fff solid 5px;
}
.about .features > * > *.feature-image {
  text-align: center;
  padding-left: 25px;
  /** border-radius: 15px 0 0 15px;  **/
}
.about .features > * > *.feature-text {
  padding-right: 25px;
  /** border-radius: 0 15px 15px 0;  **/
}

.about h4 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 0;
  margin-left: 15px;
}

.about .features h5 {
  margin: 0;
  font-size: 18px;
}
.about .features p {
  margin: 0;
  font-size: 16px;
}

.about .description {
  margin-top: 10px;
  padding: 1em 30px 0.25em;
  background: #eee;
  border-radius: 8px;
}

.about .description a.information-modal-link {
  color: blue;
}
.about .description a.information-modal-link:hover {
  text-decoration: none;
}

@media screen and (max-width: 35.5em) {
  .about .main-text {
    font-size: 20px;
    line-height: 1.5;
    text-align: left;
  }

  .about .features {
    text-align: center;
  }

  .about .features > * {
    margin-top: 8px;
    display: block;
  }

  .about .features > * > * {
    display: inline-block;
    height: auto;
    background: #fff;
    border-top: 0;
  }

  .about .features > * > *.feature-image,
  .about .features > * > *.feature-text {
    padding: 10px;
    border-radius: 0;
  }
}
.icon-a._icon-excel {
  width: 20px;
}

/** Content  **/
.content .content-list {
  margin-top: 20px;
}

.content .content-list h4 {
  margin-top: 20px;
  color: #fefefe;
  padding: 5px 10px 5px 20px;
  /* border-radius: 10px 0 0 0; */ /* 境界線  */
  font-size: 16px;
  margin-bottom: 0;
}

.content .content-list h4:hover {
  opacity: 0.8;
}

.content .content-list h4.leader {
  background: -webkit-gradient(
    radial,
    100% 0%,
    0,
    100% 0%,
    300,
    color-stop(0.4, rgb(90, 55, 20)),
    color-stop(0, #fff)
  );
  background: -webkit-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(90, 55, 20) 40%
  );
  background: -moz-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(90, 55, 20) 40%
  );
  background: -o-radial-gradient(100% 0%, circle, #fff 0%, rgb(90, 55, 20) 40%);
  background: -ms-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(90, 55, 20) 40%
  );
  background: radial-gradient(100% 0%, circle, #fff 0%, rgb(90, 55, 20) 40%);
}
.content .content-list h4.philosophy {
  background: -webkit-gradient(
    radial,
    100% 0%,
    0,
    100% 0%,
    300,
    color-stop(0.4, rgb(50, 75, 50)),
    color-stop(0, #fff)
  );
  background: -webkit-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(50, 75, 50) 40%
  );
  background: -moz-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(50, 75, 50) 40%
  );
  background: -o-radial-gradient(100% 0%, circle, #fff 0%, rgb(50, 75, 50) 40%);
  background: -ms-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(50, 75, 50) 40%
  );
  background: radial-gradient(100% 0%, circle, #fff 0%, rgb(50, 75, 50) 40%);
}
.content .content-list h4.life {
  background: -webkit-gradient(
    radial,
    100% 0%,
    0,
    100% 0%,
    300,
    color-stop(0.4, rgb(20, 80, 140)),
    color-stop(0, #fff)
  );
  background: -webkit-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(20, 80, 140) 40%
  );
  background: -moz-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(20, 80, 140) 40%
  );
  background: -o-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(20, 80, 140) 40%
  );
  background: -ms-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(20, 80, 140) 40%
  );
  background: radial-gradient(100% 0%, circle, #fff 0%, rgb(20, 80, 140) 40%);
}
.content .content-list h4.management {
  background: -webkit-gradient(
    radial,
    100% 0%,
    0,
    100% 0%,
    300,
    color-stop(0.4, rgb(120, 60, 60)),
    color-stop(0, #fff)
  );
  background: -webkit-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(120, 60, 60) 40%
  );
  background: -moz-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(120, 60, 60) 40%
  );
  background: -o-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(120, 60, 60) 40%
  );
  background: -ms-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(120, 60, 60) 40%
  );
  background: radial-gradient(100% 0%, circle, #fff 0%, rgb(120, 60, 60) 40%);
}
.content .content-list h4.cd {
  background: -webkit-gradient(
    radial,
    100% 0%,
    0,
    100% 0%,
    300,
    color-stop(0.4, rgb(73, 108, 119)),
    color-stop(0, #fff)
  );
  background: -webkit-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(73, 108, 119) 40%
  );
  background: -moz-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(73, 108, 119) 40%
  );
  background: -o-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(73, 108, 119) 40%
  );
  background: -ms-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(73, 108, 119) 40%
  );
  background: radial-gradient(100% 0%, circle, #fff 0%, rgb(73, 108, 119) 40%);
}
.content .content-list h4.goudou {
  background: -webkit-gradient(
    radial,
    100% 0%,
    0,
    100% 0%,
    300,
    color-stop(0.4, rgb(175, 17, 17)),
    color-stop(0, #fff)
  );
  background: -webkit-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(175, 17, 17) 40%
  );
  background: -moz-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(175, 17, 17) 40%
  );
  background: -o-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(175, 17, 17) 40%
  );
  background: -ms-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(175, 17, 17) 40%
  );
  background: radial-gradient(100% 0%, circle, #fff 0%, rgb(175, 17, 17) 40%);
}
.content .content-list h4.sekai {
  background: -webkit-gradient(
    radial,
    100% 0%,
    0,
    100% 0%,
    300,
    color-stop(0.4, rgb(87, 15, 101)),
    color-stop(0, #fff)
  );
  background: -webkit-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(87, 15, 101) 40%
  );
  background: -moz-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(87, 15, 101) 40%
  );
  background: -o-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(87, 15, 101) 40%
  );
  background: -ms-radial-gradient(
    100% 0%,
    circle,
    #fff 0%,
    rgb(87, 15, 101) 40%
  );
  background: radial-gradient(100% 0%, circle, #fff 0%, rgb(87, 15, 101) 40%);
}

.content .content-item {
  display: table; /*cardoff*/
  width: 100%;
  border-top: solid #fff 5px;
  text-align: start;

  /* padding: 10px 10px 10px 10px; */ /*cardon*/
}
.content .content-item > * {
  display: table-cell; /*cardoff*/
  vertical-align: middle;
  padding: 10px 0 10px 25px; /*cardoff*/
  cursor: pointer;
}
.content .content-item.no-detail > * {
  cursor: auto;
}
.content .content-item > *.no-cover-img {
  padding-right: 25px;
}
.content .content-item:hover > * {
  opacity: 0.8;
}
.card-val:hover {
  opacity: 0.8;
}
.content .content-item.no-detail:hover > * {
  opacity: unset;
}
.content .content-item > *.cover-image {
  text-align: right;
  padding-right: 25px; /*cardoff*/
  width: 100px;
}
.content .content-item .title {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}
.content .content-item .sub-title {
  display: inline-block;
  font-size: 16px;
}
.content .content-item .detail {
  /*
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
*/
  width: 825px;
  margin-bottom: 0;
  word-wrap: break-word;
}
.content .no-cover-img .detail {
  width: auto;
}
.content .content-item .detail-open-link-area {
  margin-bottom: 0;
  text-align: right;
}
.content .content-item .detail-html {
  display: none;
}
.content
  .content-item:hover
  .title
  .content
  .content-item:hover
  .sub-title
  .content
  .content-item:hover
  .detal {
  text-decoration: underline;
}

.content .content-item.content-item-leader > * {
  background: #ffe6c8;
}
.content .content-item.content-item-philosophy > * {
  background: #e1ffe6;
}
.content .content-item.content-item-life > * {
  background: #dce6ff;
}
.content .content-item.content-item-management > * {
  background: #ffdcdc;
}
.content .content-item.content-item-cd > * {
  background: #e5fff3;
}
.content .content-item.content-item-goudou > * {
  background: #ffe5ed;
}
.content .content-item.content-item-sekai > * {
  background: #fbe5ff;
}

.content .cover-image img {
  width: 100%;
}

.content .tag-free {
  font-weight: bold;
  background: #fff;
  padding: 2px 8px 0px;
  border-radius: 3px;
  color: #0000a4;
  margin-right: 5px;
}
.content .tag-new {
  font-weight: bold;
  background: #fff;
  padding: 2px 8px 0px;
  border-radius: 3px;
  color: #ff0000;
  margin-right: 5px;
}
.content .tag-comming-soon {
  font-weight: bold;
  background: #fff;
  padding: 2px 8px 0px;
  border-radius: 3px;
  color: #643c8c;
  margin-right: 5px;
}

@media screen and (max-width: 35.5em) {
  .content .content-item > * {
    padding: 10px;
    width: auto;
    box-sizing: border-box;
  }

  .content .content-item > * {
    display: block;
  }

  .content .content-item > *.cover-image {
    text-align: right;
    width: auto;
  } /* card off */

  .content-item > *.cover-image {
    width: 100%;
  }

  .content .content-item > *.content-info {
    text-align: left;
    /* width: 0; */
    padding: 10px 10px 0;
    padding: 0;
  }

  .content .cover-image img {
    width: 20%;
    height: auto;
  }

  .content .content-item .title {
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .content .content-item .sub-title {
    display: block;
    font-size: 13px;
  }

  .content .content-item .detail {
    display: none;
  }
  .content .content-item .detail.di {
    display: none;
  }
}

.content-info p,
span {
  display: none;
}

/** Attention  **/
.attention ul {
  margin-top: 20px;
  padding-left: 30px;
  font-size: 16px;
}

.attention li {
  list-style-type: disc;
}

/** Question  **/
.question .q-a-area {
  margin-top: 20px;
  font-size: 16px;
}

.question .q-a-area p {
  display: table;
  margin-bottom: 0;
}

.question .q-a-area p.q-text {
  margin-top: 15px;
}

.question .q-a-area p:before {
  display: table-cell;
  width: 40px;
  text-align: center;
  font-weight: bold;
}
.question .q-a-area p.q-text:before {
  color: #2c1bc4;
}
.question .q-a-area p.a-text:before {
  color: #c41b1b;
  padding-left: 15px;
}

.question .q-a-area p.q1:before {
  content: "Q1";
}
.question .q-a-area p.a1:before {
  content: "A1";
}
.question .q-a-area p.q2:before {
  content: "Q2";
}
.question .q-a-area p.a2:before {
  content: "A2";
}
.question .q-a-area p.q3:before {
  content: "Q3";
}
.question .q-a-area p.a3:before {
  content: "A3";
}
.question .q-a-area p.q4:before {
  content: "Q3";
}
.question .q-a-area p.a4:before {
  content: "A3";
}

/** Contact us  **/
aside {
  margin-top: 60px;
  padding: 40px 0 40px;
  color: #fff;
  background-color: #4d4d4d;
  text-align: center;
}

aside .contact-us-wrapper {
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}

aside .contact-us-wrapper * {
  margin-bottom: 0;
}

aside h3 {
  font-size: 1.5em;
}

aside img.logo {
  max-width: 389px;
  width: 100%;
  height: auto;
}

aside h4 {
  font-size: 1.25em;
  margin-top: 15px;
}

aside .contact-us-body {
  margin-left: 20px;
  margin-top: 15px;
}

aside .contact-info {
  margin-top: 15px;
  font-size: 2em;
  display: table;
}
aside .contact-info > * {
  display: table-row;
}
aside .contact-info > * > * {
  display: table-cell;
  padding: 0 15px 0 0;
  vertical-align: middle;
}
aside .contact-info > * > *:first-of-type {
  text-align: center;
}
aside .contact-info a {
  text-decoration: none;
  color: white;
}

aside .contact-detail {
  margin: 10px auto 0;
}

aside .contact-detail > p {
  font-size: 1.2em;
}

aside .contact-detail .annotation {
  margin-top: 5px;
  padding: 0 5px;
  background: inherit;
}
aside .contact-detail .annotation p {
  margin-top: 5px;
}

aside .contact-detail .annotation .annotatiion-faq {
  margin-top: 10px;
}

aside .contact-detail .annotation .annotatiion-faq a {
  color: #ccc;
}
/*
aside p:first-of-type {
  font-size: 18px;
  margin-bottom: 30px;
}

aside p:first-of-type a {
  position: relative;
  display: inline-block;
  width: 409px;
  -webkit-transition: background-color .2s ease-out;
  transition: background-color .2s ease-out;
  color: #fff;
  border-radius: 4px;
  background-color: #a0a0a0;
}

aside p:first-of-type a:after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 5px;
  height: 10px;
  margin-top: -5px;
  content: '';
  background: url(../images/ico-button.png) no-repeat;
}

aside p:first-of-type a:hover {
  background-color: #ec5500;
}

aside p:nth-of-type(2) {
  margin-bottom: 14px;
}

aside p:nth-of-type(3) {
  width: 1000px;
  margin: 0 auto 46px;
}

aside p:last-of-type {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 14px;
}

aside ul {
  font-size: 0;
  font-weight: bold;
  width: 1000px;
  margin: 0 auto 12px;
}

aside li {
  font-size: 30px;
  display: inline-block;
}

aside li:before {
  position: relative;
  top: 4px;
  display: inline-block;
  margin-right: 12px;
  content: '';
  background-repeat: no-repeat;
}

aside li:first-child {
  position: relative;
  margin-right: 52px;
}

aside li:first-child:before {
  width: 39px;
  height: 30px;
  background-image: url(../images/ico-fc.png);
}

aside li:first-child:after {
  position: absolute;
  top: 50%;
  right: -22px;
  width: 1px;
  height: 40px;
  margin-top: -20px;
  content: '';
  background-color: #33456f;
}

aside li:last-child:before {
  width: 19px;
  height: 31px;
  background-image: url(../images/ico-phone.png);
}

aside ul a {
  text-decoration: none;
  color: #fff;
}

aside dl {
  font-size: 0;
  margin-bottom: 0;
}

aside dt,
aside dd {
  font-size: 14px;
  display: inline-block;
}

aside dt {
  margin-right: 1em;
}

aside .btn-area {
  margin-top: 20px;
}

aside button.contact {
  margin: 0 auto;
}
*/

@media screen and (max-width: 35.5em) {
  aside {
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
  }
  aside .contact-us-wrapper {
    width: 100%;
  }
  aside .contact-us-body {
    margin-left: 0;
  }

  aside .contact-info > * > *:last-of-type {
    font-size: 0.75em;
  }

  /*
  aside p:first-of-type a {
    width: 100%;
  }

  aside p:nth-of-type(3) {
    width: 100%;
  }

  aside ul {
    width: 100%;
  }

  aside p:first-of-type,
  aside p:last-of-type {
    font-size: 16px;
  }

  aside li {
    font-size: 20px;
  }
  aside li:first-child {
    margin-right: 0px;
  }
  aside li:first-child:after {
    display: none;
  }
  aside dt, aside dd {
    font-size: 12px;
  }
*/
}

/** Footer  **/
footer {
  width: 1000px;
  margin: 0 auto;
  padding: 21px 0 10px;
  text-align: center;
}

footer ul.nav {
  font-size: 0;
  margin-bottom: 10px;
  padding-bottom: 19px;
  border-bottom: 1px solid #e5e5e5;
}

footer ul.nav li {
  font-size: 14px;
  display: inline-block;
}

footer ul.nav li:not(:last-child) {
  margin-right: 19px;
}

footer ul.nav li:not(:last-child):after {
  position: relative;
  top: 1px;
  display: inline-block;
  width: 1px;
  height: 13px;
  margin-left: 19px;
  content: "";
  background-color: #333;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer [target="_blank"]:hover:after {
  opacity: 0.6;
}

footer [target="_blank"]:after {
  display: inline-block;
  width: 17px;
  height: 14px;
  margin-left: 6px;
  content: "";
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  background: url(../images/ico-blank.png) no-repeat;
}

footer p {
  font-size: 12px;
  line-height: 20px;
  padding-bottom: 8px;
  margin-bottom: 0;
}

@media screen and (max-width: 35.5em) {
  footer {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
  footer ul.nav {
    padding: 0 5%;
  }
  footer ul.nav li {
    font-size: 12px;
    margin-bottom: 10px;
  }
  footer p {
    font-size: 10px;
  }
}

/* Other */
.noScl {
  overflow: hidden;
}

.slick_container {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 35.5em) {
  .slick_container {
    width: 90%;
    margin: 0 5%;
  }
}

/** Modal Content-Detail  **/
.modal-content-item-detail h2,
.modal-content-item-detail h3,
.modal-content-item-detail h4,
.modal-content-item-detail p {
  margin-bottom: 0;
}
.modal-content-item-detail .detail {
  word-wrap: break-word;
  word-break: break-all;
  font-size: 16px;
  text-align: left;
  margin-top: 10px;
}
.modal-content-item-detail h4 {
  margin-top: 15px;
}
.modal-content-item-detail p {
  margin-top: 5px;
  text-indent: 8px;
}
.modal-content-item-detail ul {
  padding-left: 30px;
}
.modal-content-item-detail li {
  list-style-type: disc;
}

.content .hidden {
  display: none;
}
.content .hidden {
  display: none;
}
.hidden {
  display: none;
}
#info-more-link {
  background: #f9e2e6;
  color: #6f0013;
  text-align: center;
  padding: 4px 0;
  margin: 0;
  cursor: pointer;
}
#info-more-link:hover {
  text-decoration: none;
}
#info-more-link.close:before {
  content: "▼ 全て表示する";
}
#info-more-link.open:before {
  content: "▲ 表示を閉じる";
}

.note-other-user {
  margin-top: 25px;
  padding: 0 15px;
}
.note-other-user h4 {
  color: #6f0013;
  font-size: 22px;
  margin-bottom: 5px;
}
.note-other-user p {
  font-size: 16px;
}

.following-wrapper {
  display: block;
  text-align: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99; /*最前面*/
  float: clear;
}

.following-wrapper button:after {
  /*transform: translateY(-50%) translateX(-50%);*/
  margin-left: 4px;
  top: 18px;
  right: 8px;
}

.following-wrapper button.following-button.login {
  font-size: 16px;
  padding: 0px 28px;
  line-height: 46px;
  width: 140px;
}

.following-wrapper button.following-button.charge {
  font-size: 16px;
  margin: 10px 0px 10px 0px;
  padding: 0px 10px 0px 0px;
  line-height: 46px;
  width: 140px;
}

.following-wrapper button.following-button.group_charge {
  font-size: 16px;
  margin: 10px 0px 10px 0px;
  padding: 0px 10px 0px 0px;
  line-height: 46px;
  width: 140px;
}

.following-wrapper button.following-button.training {
  font-size: 16px;
  margin: 10px 0px 10px 0px;
  padding: 0px 10px 0px 0px;
  line-height: 46px;
  width: 140px;
  letter-spacing: -0.09em;
}

.following-top-button {
  margin: 0 auto;
  font-size: 20px;
}

.card-val {
  text-align: center;
}

.card-content-img {
  width: 80%;
  /* padding:10px 10px; */
}

.card-val {
  padding: 10px;
}

.contents-about {
  font-size: 18px;
}

.contents-header {
  font-size: 20px;
  margin: 20px 0px 0px 0px;
}

.app-example-subs {
  font-size: 20px;
  font-color: blue;
  margin: 0px;
}

.user-voice {
  padding: 0px;
  margin: 0px;
}

.user-voice h4 {
  font-size: 20px;
  margin: 0px;
  padding: 0px;
}

.user-voice-section {
  padding: 0px;
  margin: 0px;
}

.user-voice-img {
  width: 25%;

  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
  vertical-align: middle;
  horizonal-align: center;
  text-align: center;
}

.user-voice-text {
  display: inline-block;
  position: relative;
  width: 70%;

  vertical-align: middle;
}

.user-voice-text p {
  box-sizing: border-box;
  width: 100%;
}

.user-voice-text img {
  width: 100%;
}

.user-voice-table {
  display: table;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
}

/*--------------------
 吹き出しを作る
--------------------*/
.user-voice-row {
  margin-bottom: 2em;
  position: relative;
}

.user-voice-row-text {
  clear: both;
  position: relative;
  padding: 10px;
  border: 1px solid;
  border-radius: 10px;
  /* max-width: -webkit-calc(100% - 120px);
	max-width: calc(100% - 120px); */
  box-sizing: border-box;
  width: 100%;
  display: inline-block;
}

.user-voice-row-text {
  border-color: #aaa;
}

.user-voice-row p {
  margin: 0 0 20px;
}

.user-voice-row p:last-child {
  margin-bottom: 0;
}
/* 三角部分 */
.user-voice-row-text:before {
  position: absolute;
  content: "";
  border: 10px solid transparent;
  border-right: 10px solid #aaa;
  top: 40px;
  left: -20px;
}

.user-voice-row-text:after {
  position: absolute;
  content: "";
  border: 10px solid transparent;
  border-right: 10px solid #fff;
  top: 40px;
  left: -19px;
}

.login-admin.content-button:after {
  margin-top: -5px;
}

.app-price-canvas {
  padding: 0px 30px;
}

.app-price-canvas > div {
  box-sizing: content-box;
  padding: 20px;
  margin-bottom: 20px;
}

.app-price-canvas-personal {
  background-color: #f4f8fd;
}

.app-price-canvas-corporation {
  background-color: #f4f8fd;
}

.app-price h4 {
  font-size: 20px;
  font-color: blue;
  margin: 0px;
}

.link-area {
  width: 100%;
  max-width: 1000px;
}

.link-area-canvas li {
  margin-bottom: 10px;
  text-align: center;
}

.link-relate-anchor {
  width: 100%;
  height: 100%;
}

.link-relate-anchor img {
  width: 90%;
  height: 90%;
}

.link-text-summary {
  color: blue;
}

.news-canvas {
  display: flex;
  align-items: stretch;
  justify-content: center;
  box-sizing: content-box;
  /* border:solid; */
  height: 100%;
}

.news-canvas > div {
  display: inline-block;
  padding: 0px 5px;
  box-sizing: content-box;
  /* height:100px; */
}

.news-title {
  background-color: black;
  color: white;
  text-align: center;
  vertical-align: middle;
  width: 90px;
  font-size: 20px;
  font-weight: bold;
}

.news-value {
  display: flex;
  align-items: center;
}

.news-value > div {
  display: inline-block;
}

.news-value > p {
  margin: 10px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .news-value {
    flex-wrap: wrap;
  }
}

.hidden_input_1,
.hidden_input_2,
.hidden_input_3 {
  display: none;
}

.open_btn_1,
.open_btn_2,
.open_btn_3 {
  background: #333;
  color: #fff;
  width: 100%;
  text-align: center;
  font-weight: bold;
  border: solid 2px black;
  cursor: pointer;
  display: block;
}

.start-hidden {
  text-align: center;
  padding-top: 5px;
  margin: 0 auto;
}

.contents_hidden_show_1,
.contents_hidden_show_2,
.contents_hidden_show_3 {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
}

.hidden_input_1:checked + .contents_hidden_show_1 {
  height: auto;
  opacity: 1;
}

.hidden_input_2:checked ~ .contents_hidden_show_2 {
  height: auto;
  opacity: 1;
}

.hidden_input_3:checked ~ .contents_hidden_show_3 {
  height: auto;
  opacity: 1;
}

.contents_acc_show_1,
.contents_acc_show_2,
.contents_acc_show_3,
.contents_acc_show_4,
.contents_acc_show_5,
.contents_acc_show_6,
.contents_acc_show_7 {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
}
/*
.acc_input_1:checked ~ .contents_acc_show_1 {
    height: auto;
    opacity: 1;
}

.acc_input_2:checked ~ .contents_acc_show_2 {
    height: auto;
    opacity: 1;
}

.acc_input_3:checked ~ .contents_acc_show_3 {
    height: auto;
    opacity: 1;
}
 */

/* for PC */
@media screen and (min-width: 35.5em) {
  .pickup-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
  }
  .pickup-video {
    width: 480px;
    margin: 10px;
  }
  .play-video {
    width: 100%;
    height: 500px;
    margin: auto;
  }
}
/* for mobile & tablet */
@media screen and (max-width: 35.5em) {
  .pickup-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .pickup-video {
    margin-top: 10px;
  }
  .play-video {
    width: 100%;
    height: 300px;
    margin: auto;
  }
}

.link-border {
  border: 1px solid #d9d9d9;
}
