@charset "UTF-8";
/* --------------------------------------------------
	Resetting default margin and padding
-------------------------------------------------- */
/* !HTML5 elements
---------------------------------------------------------- */
header,
footer,
nav,
section,
aside,
article {
  display: block;
}

/* !Reseting
---------------------------------------------------------- */
body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  -webkit-text-size-adjust: none;
  color: #313333;
  background-color: #fff;
}

@media (max-width: 767px) {
  body {
    font-size: 13px;
  }
}
body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
input,
a,
textarea,
figure,
select,
span,
nav,
section,
header {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

fieldset,
img {
  border: 0;
}

img {
  vertical-align: top;
  max-width: 100%;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:after,
q:before {
  content: "";
}

a,
input {
  /* outline: none; */
}

abbr,
acronym {
  border: 0;
}

/* !Clearfix
---------------------------------------------------------- */
.clearfix {
  display: block;
  min-height: 1%;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1%;
  /*\*/
  /*/
  height: auto;
  overflow: hidden;
  /**/
}

/* !Layout
---------------------------------------------------------- */
html {
  overflow-y: scroll;
}

@media print {
  html,
  html body {
    *zoom: 0.65;
  }
}
/* link
------------------------------------------------ */
a {
  color: #231815;
  text-decoration: none;
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important;
  /* Firefox */
  -webkit-transition: all 0.5s !important;
  /* Chrome&Safari */
}

a:hover {
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important;
  /* Firefox */
  -webkit-transition: all 0.5s !important;
  /* Chrome&Safari */
}

.op,
.op a,
.op img,
.op input {
  -webkit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  -ms-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

.op:hover,
.op a:hover,
.op:hover img,
.op:hover input {
  opacity: 0.7;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  filter: alpha(opacity=70);
  /* IE lt 8 */
  -ms-filter: "alpha(opacity=70)";
  /* IE 8 */
  -webkit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  -ms-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

/* !fs
------------------------------------------------ */
.visible-pc {
  display: block !important;
}

.visible-ts {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-pc {
    display: none !important;
  }

  .visible-ts {
    display: block !important;
  }
}
/* !ff
------------------------------------------------ */
.ffserif {
  font-family: "Noto Serif JP", serif;
}

/* !fonts
------------------------------------------------ */
.fwb {
  font-weight: 700;
}

.vat {
  vertical-align: top !important;
}

.vam {
  vertical-align: middle !important;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

/* wrapper
----------------------------------------------- */
#wrapper {
  padding: 74px 0 0;
}

.inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.innerbox {
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  #wrapper {
    padding: 74px 0 0;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
img {
  max-width: 100%;
  height: auto;
}

body.lang-en .txt-jp {
  display: none !important;
}

body.lang-jp .txt-en {
  display: none !important;
}

/* header
----------------------------------------------- */
#header .headerbox {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  transform: translateY(0);
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important;
  /* Firefox */
  -webkit-transition: all 0.5s !important;
  /* Chrome&Safari */
  background-color: #20319d;
}

#header.headroom--unpinned .headerbox {
  transform: translateY(-220px);
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important;
  /* Firefox */
  -webkit-transition: all 0.5s !important;
  /* Chrome&Safari */
}

#header .headerin {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  height: 74px;
  padding: 0 30px 0 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
#header .headerin .search-box {
  display: none;
  position: absolute;
  right: 30px;
  top: 85px;
  width: 520px;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  #header .headerin .search-box {
    right: 0;
    top: 75px;
    width: 100%;
    padding: 20px 40px;
    border-radius: 0;
    text-align: center;
  }
}
#header .headerin .search-box.active {
  display: block;
  animation: show 0.3s linear;
}
#header .headerin .search-box .headline {
  font-size: 14px;
  font-weight: bold;
}
#header .headerin .search-box form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #header .headerin .search-box form {
    justify-content: center;
    flex-wrap: wrap;
  }
}
#header .headerin .search-box input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  width: 360px;
  height: 40px;
  padding: 0 15px;
  font-family: "Noto Sans JP", serif;
  background-color: #ececec;
  font-size: 12px;
  outline: none;
  border-radius: 0;
}
#header .headerin .search-box input[type="text"]:placeholder-shown {
  color: #737373;
}
#header .headerin .search-box input[type="text"]::-webkit-input-placeholder {
  color: #737373;
}
#header .headerin .search-box input[type="text"]:-moz-placeholder {
  color: #737373;
}
#header .headerin .search-box input[type="text"]::-moz-placeholder {
  color: #737373;
}
#header .headerin .search-box input[type="text"]:-ms-input-placeholder {
  color: #737373;
}
@media screen and (max-width: 767px) {
  #header .headerin .search-box input[type="text"] {
    word-wrap: 100%;
  }
}
#header .headerin .search-box button {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 105px;
  height: 35px;
  margin-left: 12px;
  border: none;
  background-color: #ec0f0f;
  color: #fff;
  font-size: 12px;
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  #header .headerin .search-box button:hover {
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  #header .headerin .search-box button {
    transition: 0.3s;
  }
  #header .headerin .search-box button:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  #header .headerin .search-box button {
    margin-top: 15px;
  }
}

#header .headerlogo img {
  width: 205px;
  flex-shrink: 0;
  font-size: 0;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  #header .headerlogo img {
    width: 110px;
  }
}

#header .headerlogo .logoin {
  display: flex;
  align-items: center;
}

#header .headerlogo .logojp {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6em;
  margin-right: 15px;
}

#header .headerlogo .logoen {
  font-size: 12px;
  font-weight: 200;
  line-height: 1.5em;
  letter-spacing: 0.15em;
  color: #ea002a;
}

#header .gnavi {
  position: relative;
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#header .gnavi .accordion {
  position: absolute;
  top: 0;
  left: -35px;
  padding-top: 61px;
}

#header .gnavi li {
  position: relative;
}
#header .gnavi li.search {
  width: 27px;
  height: 29px;
  margin-left: 50px;
  background: url("../img/common/icn-search.png") no-repeat;
  background-size: 100% auto;
  filter: brightness(1000000%);
}
@media screen and (max-width: 1350px) {
  #header .gnavi li.search {
    margin-left: 28px;
  }
}
@media screen and (min-width: 768px) {
  #header .gnavi li.search:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  #header .gnavi li.search {
    width: 22px;
    height: 22px;
    margin-left: 0;
  }
}

#header .gnavi li + li {
  margin-left: 30px;
}

#header .gnavi li a {
  display: block;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 1350px) {
  #header .gnavi li a {
    font-size: 11px;
  }
}

#header .gnavi li a:hover {
  opacity: 0.7;
}

.gnavimain {
  background: #fff;
  width: 206px;
  padding: 20px 20px;
  border-radius: 10px;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.15);
  display: none;
}

#header .gnavi .gnavimain a {
  font-size: 14px;
  font-weight: 700;
  color: #222222;
  border-bottom: 1px solid #ececec;
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-family: "Noto Sans JP", sans-serif;
}

#header .gnavi .gnavimain a:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#header .headerjob a {
  display: flex !important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 160px;
  height: 60px;
  padding-left: 20px;
  text-align: center;
  background-image: url("../img/common/icn-ar-r-white.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 7px 10px;
  background-color: #e23406;
  color: #fff;
  font-size: 18px;
}
@media screen and (max-width: 1350px) {
  #header .headerjob a {
    width: 80px;
    background-image: transparent;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  #header .gnavi li.headerjob a:hover {
    transition: 0.3s;
  }
  #header .gnavi li.headerjob a:hover:hover {
    opacity: 0.7;
  }
}

.headerlang {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 5px;
}
@media screen and (max-width: 767px) {
  .headerlang {
    gap: 0 8px;
  }
}

.headerlang a {
  color: #6e8399;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 65px;
  text-align: center;
  border-radius: 15px;
  height: 26px;
  font-size: 12px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .headerlang a {
    width: 48px;
    height: 31px;
    line-height: 31px;
    border-radius: 4px;
    font-size: 11px;
  }
}

.headerlang a.on {
  background: #e23406;
  color: #fff;
}

#wrapper .headertwo .headerbox {
  background: #fff;
}
#wrapper .headertwo .headerbox li.search {
  background: url("../img/common/icn-search_b.png") no-repeat;
  background-size: 100% auto;
}

#wrapper .headertwo .gnavi li a {
  color: #182636;
}

#wrapper .headertwo .headerjob a {
  border: 1px solid #182636;
}

#wrapper .headertwo .headerlang a {
  color: #182636;
}

#header .headerlogo a:nth-child(2) {
  display: none;
}

#wrapper .headertwo .headerlogo a:nth-child(1) {
  display: none;
}

#wrapper .headertwo .headerlogo a:nth-child(2) {
  display: block;
}

#wrapper .headertwo .gnavi li.headerjob a:hover {
  background: #182636;
  color: #fff;
}

#wrapper .headertwo .gnavi li a:hover {
  color: #fabd00;
}

@media (max-width: 1200px) {
  #header .headerlogo .logoin {
    flex-direction: column;
    align-items: flex-start;
  }

  #header .headerlogo .logojp {
    margin: 0 0 3px;
  }

  #header .gnavi li + li {
    margin-left: 20px;
  }
}
@media (max-width: 1024px) {
  #header.headroom--unpinned .headerbox {
    transform: translateY(-110px);
    transition: all 0.5s !important;
    -moz-transition: all 0.5s !important;
    /* Firefox */
    -webkit-transition: all 0.5s !important;
    /* Chrome&Safari */
  }

  #header .headerin {
    height: 75px;
    padding: 0 55px 0 3%;
  }

  #header .headerlogo .logo {
    margin-right: 10px;
  }

  #header .headerlogo .logojp {
    font-size: 8px;
  }

  #header .headerlogo .logoen {
    font-size: 7px;
  }

  #header .gnavi li:not(.search) {
    display: none;
  }

  #header .headerjob {
    position: relative;
    right: auto;
    top: auto;
  }

  .headerlang {
    margin-right: auto;
    margin-left: 10px;
  }

  #wrapper .headertwo .headerlang a.on {
    color: #182636;
  }
}
@media (max-width: 320px) {
  #header .headerlogo .logo {
    margin-right: 5px;
  }

  #header .headerin {
    padding-left: 3%;
  }
}
@media (max-width: 280px) {
  #header .headerlogo .logo {
    width: 48px;
    margin-right: 5px;
  }

  #header .headerin {
    padding-left: 1%;
  }
}
.navbar-toggle {
  display: none;
}

.navbar-collapse {
  display: none;
}

@media (max-width: 1024px) {
  .navbar-toggle,
  .navbar-close {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 75px;
    position: fixed;
    right: 0;
    top: 5px;
    z-index: 102;
  }

  .navbar-close {
    top: -2px;
  }

  .navbar-close .navbar-toggle span,
  .navbar-close .navbar-close span {
    left: 15px;
  }

  .navbar-toggle .toggleico {
    width: 30px;
    height: 30px;
    position: relative;
  }

  .headertwo .navbar-toggle span {
    background-color: #182636;
  }
  .headertwo .navbar-toggle .toggletxt {
    color: #182636;
  }

  .navbar-toggle span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    background-color: #fff;
    width: 30px;
    height: 2px;
  }

  .navbar-close .toggleico {
    width: 30px;
    height: 30px;
    position: relative;
  }

  .navbar-close span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    background-color: #fff;
    width: 30px;
    height: 2px;
  }

  .navbar-toggle .toggletxt {
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1;
    transition: all 0.4s;
  }

  .navbar-close .toggletxt {
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1;
  }

  #header .navbar-toggle span:nth-of-type(1) {
    top: 10px;
  }

  #header .navbar-toggle span:nth-of-type(2) {
    top: 20px;
  }

  #header .navbar-close span:nth-of-type(1) {
    top: 10px;
    transform: translateY(6px) rotate(-45deg);
  }

  #header .navbar-close span:nth-of-type(2) {
    top: 22px;
    transform: translateY(-6px) rotate(45deg);
  }

  .navbar-collapse {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    padding-bottom: 50px;
    overflow-y: auto;
    background: #20319d;
    z-index: 101;
  }

  .navbarin {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }

  .navbarbox {
    width: 100%;
    margin-top: 30px;
  }

  .navbarlist {
    width: 100%;
  }

  .navbarlist li {
    font-size: 16px;
    font-weight: 500;
  }
  .navbarlist li:not(.last) .navbarlist li:last-child {
    border-bottom: 1px solid #69b5e0;
  }

  .navbarlist li > a {
    display: block;
    color: #fff;
    padding: 25px 30px;
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
  }

  .navbarinmain {
    display: none;
  }

  .navbarlist .comtoggle {
    position: relative;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .navbarlist .comtoggle.on .switch::before {
    transform: rotate(90deg);
  }
}
@media (max-width: 1024px) {
  .navbarlist .comtoggle .switch {
    position: absolute;
    top: 31px;
    right: 30px;
    width: 10px;
    height: 10px;
  }
  .navbarlist .comtoggle .switch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 4px;
    width: 2px;
    height: 100%;
    background-color: #fff;
    transition: transform 0.3s;
  }
  .navbarlist .comtoggle .switch::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }

  .navbarlist .comtoggle.on::after {
    transform: rotate(360deg);
  }

  .navbarlist li .navbarinmain {
    padding: 0 45px 25px;
  }

  .navbarlist li .navbarinmain a {
    display: block;
    font-size: 13px;
    color: #fff;
  }
  .navbarlist li .navbarinmain a:not(:nth-of-type(1)) {
    margin-top: 25px;
  }

  #header .navbarlist li.headerjob {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }

  #header .navbarlist .headerjob a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    width: calc(100% - 50px);
    height: 70px;
    margin-left: 25px;
    padding-left: 25px;
  }
}
/* contents
----------------------------------------------- */
.mainbox {
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}

.contents-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .contents-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contents-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* footer
----------------------------------------------- */
#globalFooter {
  padding-top: 80px;
  padding-bottom: 90px;
  background-color: #f5ede9;
}
@media screen and (max-width: 767px) {
  #globalFooter {
    padding: 80px 0 140px;
  }
  #globalFooter .contents-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  #globalFooter .logo {
    text-align: center;
  }
}
#globalFooter .logo img {
  width: 350px;
}
@media screen and (max-width: 767px) {
  #globalFooter .logo img {
    max-width: 265px;
    width: 90%;
  }
}
#globalFooter .footer-navi {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 60px;
  margin-top: 80px;
  padding-bottom: 50px;
  border-bottom: 1px solid #ece3da;
}
@media screen and (max-width: 767px) {
  #globalFooter .footer-navi {
    flex-wrap: wrap;
    margin-top: 35px;
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  #globalFooter .footer-navi > ul {
    width: 100%;
  }
  #globalFooter .footer-navi > ul:last-child li a {
    border-bottom: none;
  }
}
#globalFooter .footer-navi > ul > li {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #globalFooter .footer-navi > ul > li {
    border-bottom: 1px solid #bfd0e3;
  }
  #globalFooter .footer-navi > ul > li > a,
  #globalFooter .footer-navi > ul > li > span {
    display: block;
    padding: 25px 30px;
    font-size: 16px;
    font-weight: bold;
  }
  #globalFooter .footer-navi > ul > li > span {
    position: relative;
  }
}
@media screen and (max-width: 767px) and (min-width: 768px) {
  #globalFooter .footer-navi > ul > li > span {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #globalFooter .footer-navi > ul > li > span.active .switch::before {
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 767px) {
  #globalFooter .footer-navi > ul > li > span .switch {
    position: absolute;
    top: 31px;
    right: 30px;
    width: 10px;
    height: 10px;
  }
  #globalFooter .footer-navi > ul > li > span .switch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 4px;
    width: 2px;
    height: 100%;
    background-color: #313333;
    transition: transform 0.3s;
  }
  #globalFooter .footer-navi > ul > li > span .switch::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #313333;
  }
}
#globalFooter .footer-navi > ul > li:not(:nth-of-type(1)) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #globalFooter .footer-navi > ul > li:not(:nth-of-type(1)) {
    margin-top: 0;
  }
}
#globalFooter .footer-navi > ul > li ul {
  margin-top: 30px;
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  #globalFooter .footer-navi > ul > li ul {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  #globalFooter .footer-navi > ul > li ul {
    display: none;
    margin-top: 0;
    padding-left: 45px;
    padding-bottom: 25px;
  }
}
#globalFooter .footer-navi > ul > li ul li {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #globalFooter .footer-navi > ul > li ul li {
    margin-top: 0;
  }
  #globalFooter .footer-navi > ul > li ul li:not(:nth-of-type(1)) {
    margin-top: 25px;
    font-size: 13px;
  }
}
#globalFooter .footer-navi > ul a {
  color: #313333;
}

.footer-btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding-top: 55px;
}
@media screen and (max-width: 767px) {
  .footer-btm {
    flex-direction: column;
    gap: 30px 0;
    width: calc(100% - 40px);
    margin: 35px auto 0;
    padding-top: 30px;
    border-top: 1px solid #bfd0e3;
  }
}
.footer-btm .link a {
  font-size: 13px;
  color: #313333;
}
@media screen and (max-width: 767px) {
  .footer-btm .link a {
    font-size: 11px;
  }
}
.footer-btm .copyright {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .footer-btm .copyright {
    font-size: 11px;
  }
}

.nextpc {
  position: fixed;
  right: 50px;
  bottom: 0;
  z-index: 11;
  transition: transform 0.3s;
  transform: translateY(110%);
}
.nextpc.active {
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .nextpc {
    width: 220px;
  }
}

.nextrightmain {
  background-image: url("../img/common/bg-floating-btn.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 30px;
  color: #fff;
  box-shadow: 1px 0px 16px rgba(0, 0, 0, 0.18);
  border-radius: 4px;
}

.nextrititle {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

.nextritxt {
  font-size: 12px;
  text-align: center;
  margin-bottom: 15px;
}

.nextribnt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 170px;
  height: 50px;
  font-size: 14px;
  padding-left: 20px;
  color: #fff;
  font-weight: bold;
  background-image: url("../img/common/icn-ar-r-white.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 7px 10px;
  background-color: #e23406;
}

.nextrclose {
  position: absolute;
  right: -16px;
  top: -16px;
}

.nextsp {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  position: fixed;
  bottom: -110px;
  z-index: 11;
  width: 100%;
  height: 90px;
  display: none;
  color: #fff;
  transition: bottom 0.3s;
}
.nextsp.active {
  bottom: 0;
}

.nextrightsp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 25px;
  background-image: url("../img/common/bg-floating-btn-sp.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 15px 10px;
}
@media screen and (max-width: 375px) {
  .nextrightsp {
    gap: 0 10px;
  }
}
.nextrightsp .nextrisprig {
  flex-grow: 1;
}
.nextrightsp .nextribnt {
  flex-shrink: 0;
  width: 150px;
  height: 60px;
  justify-content: flex-start;
  border-radius: 3px;
  padding-left: 15px;
  font-size: 14px;
}
@media screen and (max-width: 500px) {
  .nextrightsp .nextribnt {
    width: 120px;
    font-size: 12px;
  }
}

.nextrightsp a {
  display: flex;
  justify-content: center;
}

.nextrisplef {
  width: 26px;
  height: 28px;
  margin-top: -5px;
}

.nextrightsp .nextrititle {
  text-align: left;
  font-size: 15px;
  margin-bottom: 0;
}
@media screen and (max-width: 375px) {
  .nextrightsp .nextrititle {
    font-size: 11px;
  }
}
@media screen and (max-width: 430px) {
  .nextrightsp .nextrititle {
    font-size: 12px;
  }
}

.nextrightsp .nextritxt {
  margin: 10px 0 0 0;
  font-size: 13px;
  text-align: left;
  word-break: break-all;
}
@media screen and (max-width: 550px) {
  .nextrightsp .nextritxt {
    font-size: 10px;
  }
}
@media screen and (max-width: 374px) {
  .nextrightsp .nextritxt {
    display: none;
  }
}

.nextrightsp .nextrclose {
  right: 5px;
  top: 5px;
}

@media (max-width: 1024px) {
  .nextpc {
    right: 25px;
  }
}
@media (max-width: 767px) {
  .nextpc {
    display: none;
  }

  .nextsp {
    display: block;
  }

  .nextritxt {
    font-size: 11px;
  }
}
.dot-title {
  position: relative;
  padding-left: 40px;
  padding-bottom: 25px;
  font-size: 30px;
  font-weight: bold;
  border-bottom: 1px solid #cecdcd;
}
@media screen and (max-width: 767px) {
  .dot-title {
    padding-left: 20px;
    padding-bottom: 18px;
    font-size: 20px;
  }
}
.dot-title::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 23px;
  background: #fabd00;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .dot-title::before {
    top: 18px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 7px;
  }
}

.btn.round a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 220px;
  height: 65px;
  padding-left: 15px;
  font-size: 16px;
  font-weight: 700;
  color: #212121;
  border: 1px solid #262525;
  border-radius: 32.5px;
  line-height: 63px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .btn.round a:hover {
    background-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .btn.round a {
    width: 175px;
    height: 50px;
    border-radius: 50px;
    font-size: 13px;
  }
}
.btn.round a::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 50%;
  background: #fabd00;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .btn.round a::before {
    left: 27px;
  }
}
.btn.no-dot a {
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .btn.no-dot a {
    width: 165px;
  }
}
.btn.no-dot a::before {
  content: none;
}
.btn.white a {
  border-color: #fff;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .btn.white a:hover {
    color: #222;
  }
}
@media screen and (min-width: 768px) {
  .btn.bk a:hover {
    color: #fff;
    background-color: #222;
  }
}

.common-btn a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding-left: 20px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  background-image: url("../img/common/icn-ar-r-white.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 7px 10px;
  background-color: #e23406;
  border-radius: 3px;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .common-btn a {
    transition: 0.3s;
  }
  .common-btn a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .common-btn a {
    padding-left: 30px;
    font-size: 14px;
    background-size: 8px 11px;
    background-position: calc(100% - 30px) center;
  }
}

.news-tag-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 70px;
  font-size: 16px;
  color: #666;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .news-tag-list {
    gap: 5px 15px;
    margin-top: 50px;
  }
}
.news-tag-list a {
  color: #1053a0;
}
@media screen and (min-width: 768px) {
  .news-tag-list a {
    transition: 0.3s;
  }
  .news-tag-list a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .news-tag-list a {
    font-size: 13px;
  }
}

.news-tag-list + .news-tag-list {
  margin-top: 20px;
}

.category-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .category-list {
    gap: 10px 7px;
  }
}
.category-list a,
.category-list span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  min-width: 130px;
  height: 40px;
  padding: 0 15px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: bold;
  border: 1px solid #cac8c4;
}
@media screen and (max-width: 767px) {
  .category-list a,
  .category-list span {
    min-width: 100px;
    height: 30px;
    border-radius: 30px;
    font-size: 13px;
  }
}
.category-list a.current,
.category-list span.current {
  background-color: #fabd00;
  border-color: #fabd00;
}

.experts-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0 5%;
}
@media screen and (max-width: 767px) {
  .experts-list {
    gap: 0;
  }
}
.experts-list .item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 47.5%;
  padding: 30px 0;
  border-top: 1px solid #cecdcd;
}
@media screen and (max-width: 767px) {
  .experts-list .item {
    width: 100%;
    padding: 20px 0;
    flex-wrap: wrap;
  }
  .experts-list .item:last-child {
    border-bottom: 1px solid #cecdcd;
  }
}
.experts-list .item > a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.experts-list .item > a:hover {
  background: rgba(255, 255, 255, 0.3);
}
.experts-list .item-thumbnail {
  flex-shrink: 0;
  width: 160px;
  position: relative;
  background-color: transparent;
  overflow: hidden;
}
.experts-list .item-thumbnail::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.experts-list .item-thumbnail img, .experts-list .item-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .experts-list .item-thumbnail {
    width: 110px;
  }
}
.experts-list .item-sentence {
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .experts-list .item-sentence {
    width: calc(100% - 110px);
  }
}
.experts-list .item-sentence .item-title {
  font-size: 22px;
  line-height: 1.36;
  font-weight: bold;
}
.experts-list .item-sentence .item-title::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.36) * 0.5em);
}
@media screen and (max-width: 767px) {
  .experts-list .item-sentence .item-title {
    font-size: 17px;
    line-height: 1.06;
  }
  .experts-list .item-sentence .item-title::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.06) * 0.5em);
  }
}
.experts-list .item-sentence p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .experts-list .item-sentence p {
    margin-top: 15px;
    font-size: 10px;
    line-height: 1.6;
  }
}
.experts-list .item-meta {
  width: 100%;
}
.experts-list .item .sns {
  margin-top: 10px;
  padding: 5px 0 5px 32px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 22px auto;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .experts-list .item .sns {
    font-size: 13px;
  }
}
.experts-list .item .sns.tw {
  background-image: url("../img/experts/icn-tw_blue.png");
  background-size: 26px auto;
}
.experts-list .item .tag-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  margin-top: 7px;
  gap: 10px 30px;
}
@media screen and (max-width: 767px) {
  .experts-list .item .tag-list {
    margin-top: 5px;
  }
}
.experts-list .item .tag-list a {
  position: relative;
  font-size: 14px;
  color: #4c4c4c;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .experts-list .item .tag-list a {
    font-size: 13px;
  }
}
.experts-list .item .tag-list a:not(:last-child)::before {
  position: absolute;
  top: 0;
  right: -17px;
  content: "/";
  font-size: 12px;
  color: #fabd00;
}

.sort-box select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  width: 320px;
  height: 50px;
  padding-left: 25px;
  font-size: 14px;
  font-weight: bold;
  color: #212121;
  border: 1px solid #212121;
  background: url("../img/common/icon_arrow_btm_orange.png") no-repeat calc(100% - 25px) center;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .sort-box select {
    max-width: 100%;
    height: 45px;
    padding-left: 20px;
    font-size: 13px;
    background-position: calc(100% - 20px) center;
    background-size: 8px auto;
  }
}

.meta-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 30px;
  padding: 0 20px 0 13px;
  color: #fff;
  background-color: #222;
}
@media screen and (max-width: 767px) {
  .meta-box {
    height: 23px;
    padding: 0 15px 0 10px;
  }
}
.meta-box.mailinglist {
  padding-right: 13px;
}
.meta-box.mailinglist .date {
  margin-right: 0;
  padding-right: 0;
}
.meta-box.mailinglist .date::before {
  content: none;
}
.meta-box span,
.meta-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 30px;
}
.meta-box span.date,
.meta-box a.date {
  position: relative;
  font-family: "Poppins", serif;
  font-size: 16px;
  margin-right: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .meta-box span.date,
  .meta-box a.date {
    font-size: 11px;
  }
}
.meta-box span.date::before,
.meta-box a.date::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  content: "";
  width: 1px;
  height: 15px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .meta-box span.date::before,
  .meta-box a.date::before {
    margin-top: -1px;
    height: 10px;
  }
}
.meta-box span.category,
.meta-box a.category {
  transform: translateY(-2px);
}
.meta-box span.hold,
.meta-box a.hold {
  font-size: 14px;
  white-space: nowrap;
  transform: translateY(-1px);
}
@media screen and (max-width: 767px) {
  .meta-box span.hold,
  .meta-box a.hold {
    transform: translateY(-1px);
    font-size: 11px;
  }
}
.meta-box a {
  color: #fff;
}

.event-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0 5%;
}
@media screen and (max-width: 850px) {
  .event-list {
    gap: 0;
  }
}
.event-list .item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 47.5%;
  padding: 30px 0;
  border-bottom: 1px solid #cecdcd;
}
@media screen and (max-width: 850px) {
  .event-list .item {
    width: 100%;
    padding: 20px 0;
  }
}
.event-list .item > a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.event-list .item > a:hover {
  background: rgba(255, 255, 255, 0.3);
}
.event-list .item-thumbnail {
  flex-shrink: 0;
  width: 168px;
  position: relative;
  background-color: transparent;
  overflow: hidden;
}
.event-list .item-thumbnail::before {
  content: "";
  display: block;
  padding-top: 141.3583655439%;
}
.event-list .item-thumbnail img, .event-list .item-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 850px) {
  .event-list .item-thumbnail {
    width: 115px;
  }
}
.event-list .item-sentence {
  padding-left: 30px;
}
@media screen and (max-width: 850px) {
  .event-list .item-sentence {
    padding-left: 25px;
  }
}
.event-list .item-sentence .item-meta {
  width: 195px;
}
@media screen and (max-width: 767px) {
  .event-list .item-sentence .item-meta {
    width: 150px;
  }
}
.event-list .item-sentence .item-title {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.33;
  font-weight: bold;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.event-list .item-sentence .item-title::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.33) * 0.5em);
}
@media screen and (max-width: 850px) {
  .event-list .item-sentence .item-title {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.27;
  }
  .event-list .item-sentence .item-title::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.27) * 0.5em);
  }
}
.event-list .item-sentence p {
  margin-top: 30px;
  font-size: 14px;
  line-height: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.event-list .item-sentence p::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
@media screen and (max-width: 850px) {
  .event-list .item-sentence p {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.69;
  }
  .event-list .item-sentence p::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.69) * 0.5em);
  }
}

.news-list {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .news-list {
    margin-top: 40px;
  }
}
.news-list .item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 45px 0;
  border-bottom: 1px solid #cac8c4;
}
@media screen and (max-width: 767px) {
  .news-list .item {
    padding: 20px 0;
  }
}
.news-list .item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  width: 44px;
  height: 14px;
  background: url("../img/common/icon_arrow01.png") no-repeat;
}
@media screen and (max-width: 767px) {
  .news-list .item::before {
    content: none;
  }
}
.news-list .item > a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.news-list .item > a:hover {
  background: rgba(255, 255, 255, 0.3);
}
.news-list .item-thumbnail {
  flex-shrink: 0;
  width: 200px;
  overflow: hidden;
  position: relative;
  background-color: transparent;
}
.news-list .item-thumbnail::before {
  content: "";
  display: block;
  padding-top: 69.5%;
}
.news-list .item-thumbnail img, .news-list .item-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .news-list .item-thumbnail {
    width: 135px;
    position: relative;
    background-color: transparent;
  }
  .news-list .item-thumbnail::before {
    content: "";
    display: block;
    padding-top: 69.2592592593%;
  }
  .news-list .item-thumbnail img, .news-list .item-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.news-list .item-sentence {
  width: calc(100% - 200px);
  padding-left: 40px;
  padding-right: 250px;
}
@media screen and (max-width: 1000px) {
  .news-list .item-sentence {
    padding-right: 150px;
  }
}
@media screen and (max-width: 767px) {
  .news-list .item-sentence {
    width: calc(100% - 135px);
    padding-left: 20px;
    padding-right: 0;
  }
}
.news-list .item-sentence .item-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .news-list .item-sentence .item-meta {
    gap: 0 10px;
    margin-bottom: 10px;
  }
}
.news-list .item-sentence .item-meta .date {
  font-family: "Poppins", serif;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .news-list .item-sentence .item-meta .date {
    font-size: 11px;
  }
}
.news-list .item-sentence .item-meta .category {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  min-width: 130px;
  min-height: 30px;
  padding: 5px 15px;
  border-radius: 30px;
  border: 1px solid #cac8c4;
  font-size: 13px;
  font-weight: bold;
  color: #313131;
}
@media screen and (min-width: 768px) {
  .news-list .item-sentence .item-meta .category a {
    transition: 0.3s;
  }
  .news-list .item-sentence .item-meta .category a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .news-list .item-sentence .item-meta .category {
    min-width: 80px;
    min-height: 26px;
    border-radius: 26px;
    font-size: 11px;
  }
}
.news-list .item-sentence .item-title {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.86;
}
.news-list .item-sentence .item-title::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.86) * 0.5em);
}
@media screen and (max-width: 767px) {
  .news-list .item-sentence .item-title {
    font-size: 15px;
    line-height: 1.27;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .news-list .item-sentence .item-title::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.27) * 0.5em);
  }
}
.news-list .item-sentence .news-tag-list {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .news-list .item-sentence .news-tag-list {
    margin-top: 20px;
  }
}

.collaborators-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  gap: 50px 6.66666%;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .collaborators-list {
    margin-top: 25px;
    gap: 25px 5%;
  }
}
.collaborators-list .item {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .collaborators-list .item {
    width: 30%;
  }
}
.collaborators-list .item .item-thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  aspect-ratio: 1 / 1;
  border: 1px solid #cac8c4;
}
.collaborators-list .item .item-name {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.57;
}
.collaborators-list .item .item-name::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.57) * 0.5em);
}
@media screen and (max-width: 767px) {
  .collaborators-list .item .item-name {
    margin-top: 10px;
    font-size: 12px;
  }
}

.loader {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  margin-top: -100px;
  margin-left: -40px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  font-size: 10px;
  border-top: 1.1em solid rgba(24, 33, 49, 0.7);
  border-right: 1.1em solid rgba(24, 33, 49, 0.7);
  border-bottom: 1.1em solid rgba(24, 33, 49, 0.7);
  border-left: 1.1em solid rgba(24, 33, 49, 0.2);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  display: none;
}
.loader.active {
  display: block;
}
.loader::after {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 5px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 50px;
  }
}
.wp-pagenavi .last,
.wp-pagenavi .first {
  font-size: 10px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 43px;
  height: 43px;
  border-radius: 43px;
  font-size: 18px;
  color: #282728;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 33px;
    height: 33px;
    border-radius: 33px;
    font-size: 15px;
  }
}
.wp-pagenavi span:not(.extend) {
  border: 1px solid #cac8c4;
}
.wp-pagenavi .previouspostslink {
  background: url("../img/common/pager-left.png") no-repeat center center;
}
.wp-pagenavi .nextpostslink {
  background: url("../img/common/pager-right.png") no-repeat center center;
}

.mailing {
  background: #ececec;
  padding: 45px 0 70px;
}

.mailing .mainbox {
  max-width: 1230px;
  display: flex;
  justify-content: space-between;
}

.mailingleft {
  flex: 1;
}

.indtitle {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
}

.mailingright {
  padding-top: 70px;
  width: 582px;
}
.mailingright .mailingrighttop {
  padding-left: 0;
}

.maigritxt {
  font-size: 14px;
}

.mailingrighttop {
  padding-left: 35px;
  margin-bottom: 50px;
}

.mailingrightbot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 400px) {
  .mailingrightbot {
    justify-content: center;
  }
  .mailingrightbot .mailingbot {
    width: 100%;
  }
  .mailingrightbot .mailingback {
    margin-top: 20px;
    margin-left: 0;
  }
}

.mailingbot {
  font-size: 16px;
  font-weight: 700;
  color: #212121;
  position: relative;
  border: 1px solid #262525;
  border-radius: 32.5px;
  display: inline-block;
  width: 220px;
  height: 65px;
  line-height: 63px;
  text-align: center;
}

.mailingbot:before {
  content: "";
  position: absolute;
  left: 35px;
  top: 50%;
  background: #fabd00;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
}

.mailingbot:hover {
  background: #212121;
  color: #fff;
}

.mailingback {
  font-size: 14px;
  display: inline-block;
  line-height: 75px;
  height: 75px;
  padding-right: 90px;
  position: relative;
}

.mailingback:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid #a7a7a7;
  height: 75px;
  width: 75px;
  border-radius: 50%;
}

.mailingback::after {
  content: "";
  background: url(../img/common/icon_arrow01.png) no-repeat;
  width: 44px;
  height: 14px;
  position: absolute;
  right: 15px;
  top: 50%;
  z-index: 0;
  margin-top: -7px;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.mailingback:hover:after {
  right: 10px;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

@media (max-width: 1200px) {
  .indtitle {
    font-size: 50px;
  }
}
@media (max-width: 1024px) {
  .indtitle {
    font-size: 40px;
  }

  .mailingright {
    padding-top: 60px;
    width: 63%;
  }
}
@media (max-width: 767px) {
  .mailing {
    padding: 22px 0 50px;
  }

  .mailing .mainbox {
    display: block;
  }

  .mailingright {
    width: 100%;
    padding-top: 20px;
  }

  .indtitle {
    font-size: 34px;
  }

  .mailingrighttop {
    padding-left: 0;
    margin-bottom: 35px;
  }

  .maigritxt {
    font-size: 13px;
  }

  .mailingbot {
    width: 170px;
    height: 50px;
    line-height: 48px;
    font-size: 13px;
  }

  .mailingbot:before {
    left: 15px;
    width: 8px;
    height: 8px;
    margin-top: -3px;
  }

  .mailingback {
    height: 50px;
    line-height: 50px;
    padding-right: 60px;
    font-size: 12px;
    margin-left: auto;
  }

  .mailingback:before {
    height: 50px;
    width: 50px;
  }

  .mailingback::after {
    background: url(../img/common/icon_arrow01.png) no-repeat left center/100% auto;
    width: 30px;
    height: 16px;
    position: absolute;
    right: 10px;
  }
}
.common-item-date {
  color: #20319d;
  font-weight: bold;
}

.common-mailing {
  padding-top: 80px;
  background-color: #f5ede9;
}
@media screen and (max-width: 767px) {
  .common-mailing {
    padding-top: 60px;
  }
}
.common-mailing .box {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 80px;
  background-color: #fff;
  border-bottom: 8px solid #20319d;
}
@media screen and (max-width: 767px) {
  .common-mailing .box {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1100px) {
  .common-mailing .box {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 767px) {
  .common-mailing .box {
    padding: 35px 40px;
    border-bottom-width: 4px;
  }
}
.common-mailing .box .col {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .common-mailing .box .col {
    width: 100%;
  }
}
.common-mailing .box .col.left {
  padding-right: 45px;
  border-right: 1px solid #dbe4f8;
}
@media screen and (max-width: 767px) {
  .common-mailing .box .col.left {
    padding-right: 0;
    border: none;
  }
}
.common-mailing .box .col.left .title {
  padding-bottom: 70px;
  font-size: 36px;
  font-weight: bold;
  background: url("../img/top/mailinglist-mark.png") no-repeat left bottom;
  background-size: 475px 40px;
}
@media screen and (max-width: 767px) {
  .common-mailing .box .col.left .title {
    padding-bottom: 30px;
    font-size: 24px;
    background-size: 100% 20px;
  }
}
.common-mailing .box .col.right {
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .common-mailing .box .col.right {
    margin-top: 30px;
    padding-left: 0;
  }
}
.common-mailing .box .col.right p {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .common-mailing .box .col.right p {
    font-size: 14px;
  }
}
.common-mailing .box .col.right p a {
  text-decoration: underline;
}
.common-mailing .box .col.right .common-btn {
  margin: 30px 0 60px;
}
@media screen and (max-width: 767px) {
  .common-mailing .box .col.right .common-btn {
    margin: 30px 0;
  }
}
.common-mailing .box .col.right .common-btn a {
  width: 170px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .common-mailing .box .col.right .common-btn a {
    width: 190px;
    margin: 0 auto;
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-fs12 {
  font-size: 12px;
}

.text-fs14 {
  font-size: 14px;
}

.text-fs16 {
  font-size: 16px;
}

.text-fs18 {
  font-size: 18px;
}

.text-fs19 {
  font-size: 19px;
}

.text-fs20 {
  font-size: 20px;
}

.text-fs21 {
  font-size: 21px;
}

.text-fs22 {
  font-size: 22px;
}

.text-fs23 {
  font-size: 23px;
}

.text-fs24 {
  font-size: 24px;
}

.text-fs24 {
  font-size: 24px;
}

.text-fs25 {
  font-size: 25px;
}

.text-fs26 {
  font-size: 26px;
}

.text-fs27 {
  font-size: 27px;
}

.text-fs28 {
  font-size: 28px;
}

.text-fs30 {
  font-size: 30px;
}

@media screen and (max-width: 767px) {
  .text-fs12 {
    font-size: 12px;
  }

  .text-fs14 {
    font-size: 14px;
  }

  .text-fs16 {
    font-size: 14px;
  }

  .text-fs18 {
    font-size: 16px;
  }

  .text-fs19 {
    font-size: 18px;
  }

  .text-fs20 {
    font-size: 18px;
  }

  .text-fs21 {
    font-size: 18px;
  }

  .text-fs22 {
    font-size: 20px;
  }

  .text-fs23 {
    font-size: 20px;
  }

  .text-fs24 {
    font-size: 22px;
  }

  .text-fs24 {
    font-size: 22px;
  }

  .text-fs25 {
    font-size: 24px;
  }

  .text-fs26 {
    font-size: 24px;
  }

  .text-fs27 {
    font-size: 24px;
  }

  .text-fs28 {
    font-size: 24px;
  }

  .text-fs30 {
    font-size: 24px;
  }
}
.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.mt150 {
  margin-top: 150px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

@media screen and (max-width: 767px) {
  .mt0 {
    margin-top: 0 !important;
  }

  .mt5 {
    margin-top: 5px !important;
  }

  .mt10 {
    margin-top: 10px !important;
  }

  .mt15 {
    margin-top: 10px !important;
  }

  .mt20 {
    margin-top: 15px !important;
  }

  .mt25 {
    margin-top: 15px !important;
  }

  .mt30 {
    margin-top: 20px !important;
  }

  .mt35 {
    margin-top: 20px !important;
  }

  .mt40 {
    margin-top: 30px !important;
  }

  .mt45 {
    margin-top: 30px !important;
  }

  .mt50 {
    margin-top: 40px !important;
  }

  .mt60 {
    margin-top: 40px !important;
  }

  .mt70 {
    margin-top: 50px !important;
  }

  .mt80 {
    margin-top: 50px !important;
  }

  .mt90 {
    margin-top: 50px !important;
  }

  .mt100 {
    margin-top: 50px !important;
  }

  .mt110 {
    margin-top: 60px !important;
  }

  .mt120 {
    margin-top: 60px !important;
  }

  .mt130 {
    margin-top: 60px !important;
  }

  .mt140 {
    margin-top: 70px !important;
  }

  .mt150 {
    margin-top: 70px !important;
  }

  .mtsp20 {
    margin-top: 20px !important;
  }

  .mb0 {
    margin-bottom: 0 !important;
  }

  .mb5 {
    margin-bottom: 5px !important;
  }

  .mb10 {
    margin-bottom: 10px !important;
  }

  .mb15 {
    margin-bottom: 10px !important;
  }

  .mb20 {
    margin-bottom: 15px !important;
  }

  .mb25 {
    margin-bottom: 15px !important;
  }

  .mb30 {
    margin-bottom: 20px !important;
  }

  .mb35 {
    margin-bottom: 20px !important;
  }

  .mb40 {
    margin-bottom: 30px !important;
  }

  .mb45 {
    margin-bottom: 30px !important;
  }

  .mb50 {
    margin-bottom: 40px !important;
  }

  .mb60 {
    margin-bottom: 40px !important;
  }

  .mb70 {
    margin-bottom: 50px !important;
  }

  .mb80 {
    margin-bottom: 50px !important;
  }

  .mb90 {
    margin-bottom: 50px !important;
  }

  .mb100 {
    margin-bottom: 50px !important;
  }

  .mb110 {
    margin-bottom: 60px !important;
  }

  .mb120 {
    margin-bottom: 60px !important;
  }

  .mb130 {
    margin-bottom: 60px !important;
  }

  .mb140 {
    margin-bottom: 70px !important;
  }

  .pt0 {
    padding-top: 0 !important;
  }

  .pt5 {
    padding-top: 5px !important;
  }

  .pt10 {
    padding-top: 10px !important;
  }

  .pt15 {
    padding-top: 10px !important;
  }

  .pt20 {
    padding-top: 15px !important;
  }

  .pt25 {
    padding-top: 15px !important;
  }

  .pt30 {
    padding-top: 20px !important;
  }

  .pt35 {
    padding-top: 20px !important;
  }

  .pt40 {
    padding-top: 30px !important;
  }

  .pt45 {
    padding-top: 30px !important;
  }

  .pt50 {
    padding-top: 40px !important;
  }

  .pt60 {
    padding-top: 40px !important;
  }

  .pt70 {
    padding-top: 50px !important;
  }

  .pt80 {
    padding-top: 50px !important;
  }

  .pt90 {
    padding-top: 50px !important;
  }

  .pt100 {
    padding-top: 50px !important;
  }

  .pb0 {
    padding-bottom: 0 !important;
  }

  .pb5 {
    padding-bottom: 5px !important;
  }

  .pb10 {
    padding-bottom: 10px !important;
  }

  .pb15 {
    padding-bottom: 10px !important;
  }

  .pb20 {
    padding-bottom: 15px !important;
  }

  .pb25 {
    padding-bottom: 15px !important;
  }

  .pb30 {
    padding-bottom: 20px !important;
  }

  .pb35 {
    padding-bottom: 20px !important;
  }

  .pb40 {
    padding-bottom: 30px !important;
  }

  .pb45 {
    padding-bottom: 30px !important;
  }

  .pb50 {
    padding-bottom: 40px !important;
  }

  .pb60 {
    padding-bottom: 40px !important;
  }

  .pb70 {
    padding-bottom: 50px !important;
  }

  .pb80 {
    padding-bottom: 50px !important;
  }

  .pb90 {
    padding-bottom: 50px !important;
  }

  .pb100 {
    padding-bottom: 50px !important;
  }
}
/* top
----------------------------------------------- */
body.home {
  background-image: url("../img/top/bg-contents01.png"), url("../img/top/bg-contents05.png");
  background-repeat: no-repeat, repeat-x;
  background-position: center -85px, center top;
}
@media screen and (max-width: 767px) {
  body.home {
    background-image: url("../img/top/bg-contents01-sp.png");
  }
}
body.home .c-box01 {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  body.home .c-box01 {
    padding-top: 30px;
  }
}
body.home .c-box01 .list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 1.2%;
}
@media screen and (max-width: 767px) {
  body.home .c-box01 .list {
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0 16px;
  }
}
body.home .c-box01 .list .col.left, body.home .c-box01 .list .col.right {
  width: 24.2%;
}
@media screen and (max-width: 767px) {
  body.home .c-box01 .list .col.left, body.home .c-box01 .list .col.right {
    width: calc(50% - 8px);
  }
}
body.home .c-box01 .list .col.left .item:nth-of-type(2), body.home .c-box01 .list .col.right .item:nth-of-type(2) {
  margin-top: 10px;
}
body.home .c-box01 .list .col.left .item a, body.home .c-box01 .list .col.right .item a {
  padding: 10px;
}
@media screen and (max-width: 767px) {
  body.home .c-box01 .list .col.left .item a, body.home .c-box01 .list .col.right .item a {
    padding: 5px;
  }
}
body.home .c-box01 .list .col.left .item .item-content, body.home .c-box01 .list .col.right .item .item-content {
  padding: 15px 15px 10px;
}
@media screen and (max-width: 767px) {
  body.home .c-box01 .list .col.left .item .item-content, body.home .c-box01 .list .col.right .item .item-content {
    padding: 15px 8px;
  }
}
body.home .c-box01 .list .col.left .item .item-content .common-item-date, body.home .c-box01 .list .col.right .item .item-content .common-item-date {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  body.home .c-box01 .list .col.left .item .item-content .common-item-date, body.home .c-box01 .list .col.right .item .item-content .common-item-date {
    font-size: 10px;
  }
}
body.home .c-box01 .list .col.left .item .item-content .item-title, body.home .c-box01 .list .col.right .item .item-content .item-title {
  margin-top: 10px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  body.home .c-box01 .list .col.left .item .item-content .item-title, body.home .c-box01 .list .col.right .item .item-content .item-title {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box01 .list .col.left {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box01 .list .col.right {
    order: 3;
  }
}
body.home .c-box01 .list .col.mid {
  width: 49.2%;
  margin-top: -10px;
}
@media screen and (max-width: 767px) {
  body.home .c-box01 .list .col.mid {
    order: 1;
    width: 100%;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #d1d3d7;
    margin-bottom: 10px;
  }
}
body.home .c-box01 .list .col .item a {
  display: block;
  padding: 20px;
  background: rgba(246, 238, 234, 0.8);
  box-shadow: 0 0 5.6px 0.4px rgba(83, 99, 134, 0.3);
}
@media screen and (max-width: 767px) {
  body.home .c-box01 .list .col .item a {
    padding: 10px;
  }
}
body.home .c-box01 .list .col .item .item-thumbnail {
  position: relative;
  background-color: transparent;
}
body.home .c-box01 .list .col .item .item-thumbnail::before {
  content: "";
  display: block;
  padding-top: 58.5185185185%;
}
body.home .c-box01 .list .col .item .item-thumbnail img, body.home .c-box01 .list .col .item .item-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.home .c-box01 .list .col .item .item-thumbnail img {
  object-position: center top;
}
body.home .c-box01 .list .col .item .item-content {
  padding: 40px 25px;
}
@media screen and (max-width: 767px) {
  body.home .c-box01 .list .col .item .item-content {
    padding: 20px 15px;
  }
}
body.home .c-box01 .list .col .item .item-content .common-item-date {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  body.home .c-box01 .list .col .item .item-content .common-item-date {
    font-size: 11px;
  }
}
body.home .c-box01 .list .col .item .item-content .item-title {
  margin-top: 30px;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  body.home .c-box01 .list .col .item .item-content .item-title {
    margin-top: 20px;
    font-size: 16px;
  }
}
body.home .c-box02 {
  padding-top: 90px;
  padding-bottom: 100px;
  background-image: url("../img/top/bg-contents02.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  body.home .c-box02 {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../img/top/bg-contents02-sp.png");
  }
}
body.home .c-box02 .title {
  padding-bottom: 30px;
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
  color: #20319d;
  border-bottom: 1px solid #cbced4;
}
@media screen and (max-width: 767px) {
  body.home .c-box02 .title {
    padding-bottom: 30px;
    font-size: 32px;
  }
}
body.home .c-box02 .list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  body.home .c-box02 .list {
    flex-wrap: wrap;
    margin-top: 40px;
  }
}
body.home .c-box02 .list .col {
  width: 50%;
}
@media screen and (max-width: 767px) {
  body.home .c-box02 .list .col {
    width: 100%;
  }
}
body.home .c-box02 .list .col.left {
  padding-right: 50px;
}
@media screen and (max-width: 1200px) {
  body.home .c-box02 .list .col.left {
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box02 .list .col.left {
    padding-right: 0;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #cbced4;
  }
}
body.home .c-box02 .list .col.right {
  padding-left: 50px;
  border-left: 1px solid #cbced4;
}
@media screen and (max-width: 1200px) {
  body.home .c-box02 .list .col.right {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box02 .list .col.right {
    padding-left: 0;
    border-left: none;
  }
}
body.home .c-box02 .list .col.right .item:not(:nth-of-type(1)) {
  margin-top: 45px;
}
body.home .c-box02 .list .col.right .item a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
}
@media screen and (max-width: 767px) {
  body.home .c-box02 .list .col.right .item a {
    gap: 0 20px;
  }
}
body.home .c-box02 .list .col.right .item a .item-thumbnail {
  flex-shrink: 0;
  width: 215px;
  max-width: 50%;
  margin-top: 0;
  position: relative;
  background-color: transparent;
}
body.home .c-box02 .list .col.right .item a .item-thumbnail::before {
  content: "";
  display: block;
  padding-top: 133.9534883721%;
}
body.home .c-box02 .list .col.right .item a .item-thumbnail img, body.home .c-box02 .list .col.right .item a .item-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  body.home .c-box02 .list .col.right .item a .item-thumbnail {
    width: 35%;
  }
}
body.home .c-box02 .list .col.right .item a .item-content {
  flex-grow: 1;
}
body.home .c-box02 .list .col.right .item a .item-content .item-title {
  margin-top: 15px;
  font-size: 22px;
}
@media screen and (max-width: 1000px) {
  body.home .c-box02 .list .col.right .item a .item-content .item-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box02 .list .col.right .item a .item-content .item-title {
    font-size: 14px;
  }
}
body.home .c-box02 .list .col.right .item a .item-content .item-excerpt {
  margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  body.home .c-box02 .list .col.right .item a .item-content .item-excerpt {
    margin-top: 20px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box02 .list .col.right .item a .item-content .item-excerpt {
    margin-top: 25px;
  }
}
body.home .c-box02 .list .col .item a {
  display: block;
}
body.home .c-box02 .list .col .item a .item-content .item-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0 15px;
}
body.home .c-box02 .list .col .item a .item-content .item-meta .common-item-date {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  body.home .c-box02 .list .col .item a .item-content .item-meta .common-item-date {
    font-size: 11px;
  }
}
body.home .c-box02 .list .col .item a .item-content .item-meta .item-category {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 105px;
  height: 30px;
  border-radius: 3px;
  background-color: #f7f1ed;
  font-size: 16px;
  color: #948a84;
}
@media screen and (max-width: 1000px) {
  body.home .c-box02 .list .col .item a .item-content .item-meta .item-category {
    height: 25px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box02 .list .col .item a .item-content .item-meta .item-category {
    width: 67px;
    height: 20px;
    font-size: 11px;
  }
}
body.home .c-box02 .list .col .item a .item-content .item-meta .item-category.active {
  background-color: #e23406;
  color: #fff;
}
body.home .c-box02 .list .col .item a .item-title {
  margin-top: 30px;
  font-size: 30px;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  body.home .c-box02 .list .col .item a .item-title {
    margin-top: 20px;
    font-size: 21px;
  }
}
body.home .c-box02 .list .col .item a .item-excerpt {
  margin-top: 25px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.57;
  color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  body.home .c-box02 .list .col .item a .item-excerpt {
    margin-top: 15px;
    font-size: 11px;
  }
}
body.home .c-box02 .list .col .item a .item-thumbnail {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  body.home .c-box02 .list .col .item a .item-thumbnail {
    margin-top: 20px;
  }
}
body.home .c-box02 .common-btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  body.home .c-box02 .common-btn {
    margin-top: 50px;
  }
}
body.home .c-box02 .common-btn a {
  width: 160px;
  height: 60px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  body.home .c-box02 .common-btn a {
    width: 190px;
    margin: 0 auto;
  }
}
body.home .c-box03 {
  padding: 100px 0;
  background-color: #f5ede9;
}
@media screen and (max-width: 767px) {
  body.home .c-box03 {
    padding: 60px 0;
  }
}
body.home .c-box03 .title {
  padding-bottom: 30px;
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
  color: #20319d;
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .title {
    font-size: 32px;
  }
}
body.home .c-box03 .list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .list {
    gap: 0;
  }
}
body.home .c-box03 .list .item:nth-of-type(1) {
  width: 100%;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .list .item:nth-of-type(1) {
    margin-bottom: 40px;
  }
}
body.home .c-box03 .list .item:nth-of-type(1) a {
  gap: 0 50px;
  padding: 50px 0;
  border-top: 1px solid #e3d9cc;
  border-bottom: 1px solid #e3d9cc;
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .list .item:nth-of-type(1) a {
    flex-wrap: wrap;
    gap: 0;
    padding: 40px 0;
  }
}
body.home .c-box03 .list .item:nth-of-type(1) .item-thumbnail {
  width: 630px;
  height: 400px;
}
@media screen and (max-width: 1240px) {
  body.home .c-box03 .list .item:nth-of-type(1) .item-thumbnail {
    width: 50%;
    height: 32.2580645161vw;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .list .item:nth-of-type(1) .item-thumbnail {
    width: 100%;
    height: 58.6666666667vw;
  }
}
body.home .c-box03 .list .item:nth-of-type(1) .item-content {
  padding-top: 60px;
}
@media screen and (max-width: 1200px) {
  body.home .c-box03 .list .item:nth-of-type(1) .item-content {
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .list .item:nth-of-type(1) .item-content {
    padding-top: 30px;
  }
}
body.home .c-box03 .list .item:nth-of-type(1) .item-content .item-date {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .list .item:nth-of-type(1) .item-content .item-date {
    font-size: 16px;
  }
}
body.home .c-box03 .list .item:nth-of-type(1) .item-content .item-title {
  margin-top: 40px;
  font-size: 38px;
  line-height: 1.58;
}
@media screen and (max-width: 1200px) {
  body.home .c-box03 .list .item:nth-of-type(1) .item-content .item-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .list .item:nth-of-type(1) .item-content .item-title {
    margin-top: 20px;
    font-size: 23px;
  }
}
body.home .c-box03 .list .item:not(:nth-of-type(1)) {
  width: calc(50% - 20px);
}
@media screen and (max-width: 1000px) {
  body.home .c-box03 .list .item:not(:nth-of-type(1)) {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .list .item:not(:nth-of-type(1)) {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .list .item:not(:nth-of-type(-n + 2)) {
    margin-top: 20px;
  }
}
body.home .c-box03 .list .item a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .list .item a {
    gap: 0 25px;
  }
}
body.home .c-box03 .list .item .item-thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  width: 200px;
  height: 125px;
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .list .item .item-thumbnail {
    width: 40%;
  }
}
body.home .c-box03 .list .item .item-thumbnail img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
body.home .c-box03 .list .item .item-content {
  padding-top: 10px;
  color: #333;
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .list .item .item-content {
    padding-top: 0;
  }
}
body.home .c-box03 .list .item .item-content .item-date {
  font-size: 13px;
}
@media screen and (max-width: 1200px) {
  body.home .c-box03 .list .item .item-content .item-date {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .list .item .item-content .item-date {
    font-size: 11px;
  }
}
body.home .c-box03 .list .item .item-content .item-title {
  margin-top: 15px;
  font-size: 18px;
  line-height: 1.78;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1200px) {
  body.home .c-box03 .list .item .item-content .item-title {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .list .item .item-content .item-title {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
  }
}
body.home .c-box03 .common-btn {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .common-btn {
    margin-top: 50px;
  }
}
body.home .c-box03 .common-btn a {
  width: 160px;
  height: 60px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  body.home .c-box03 .common-btn a {
    width: 190px;
    margin: 0 auto;
  }
}
body.home .c-box04 {
  padding: 100px 0 120px;
  text-align: center;
  color: #fff;
  background-image: url("../img/top/bg-contents03.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  background-color: #2d2c9d;
}
@media screen and (max-width: 767px) {
  body.home .c-box04 {
    padding: 60px 0;
  }
}
body.home .c-box04 .title {
  font-size: 78px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  body.home .c-box04 .title {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box04 .title {
    font-size: 45px;
  }
}
body.home .c-box04 .text01 {
  margin-top: 40px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  body.home .c-box04 .text01 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box04 .text01 {
    font-size: 16px;
  }
}
body.home .c-box04 .list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  body.home .c-box04 .list {
    flex-wrap: wrap;
    gap: 30px 0;
    margin-top: 40px;
  }
}
body.home .c-box04 .list .item {
  width: 33.33333%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 767px) {
  body.home .c-box04 .list .item {
    width: 100%;
  }
}
body.home .c-box04 .list .item:nth-of-type(2) .item-thumbnail {
  order: 2;
}
@media screen and (max-width: 767px) {
  body.home .c-box04 .list .item:nth-of-type(2) .item-thumbnail {
    order: 1;
  }
}
body.home .c-box04 .list .item:nth-of-type(2) .item-content {
  order: 1;
}
@media screen and (max-width: 767px) {
  body.home .c-box04 .list .item:nth-of-type(2) .item-content {
    order: 2;
  }
}
body.home .c-box04 .list .item .item-thumbnail {
  width: 100%;
  height: 300px;
  position: relative;
  background-color: transparent;
}
body.home .c-box04 .list .item .item-thumbnail::before {
  content: "";
  display: block;
  padding-top: 75%;
}
body.home .c-box04 .list .item .item-thumbnail img, body.home .c-box04 .list .item .item-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  body.home .c-box04 .list .item .item-thumbnail {
    height: 250px;
    position: relative;
    background-color: transparent;
  }
  body.home .c-box04 .list .item .item-thumbnail::before {
    content: "";
    display: block;
    padding-top: 74.6268656716%;
  }
  body.home .c-box04 .list .item .item-thumbnail img, body.home .c-box04 .list .item .item-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
body.home .c-box04 .list .item .item-content {
  width: 100%;
}
body.home .c-box04 .list .item .item-content a {
  position: relative;
  display: block;
  height: 300px;
  padding: 50px 20px 20px 40px;
  background-color: #fff;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  body.home .c-box04 .list .item .item-content a {
    padding: 30px 20px 20px 30px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  body.home .c-box04 .list .item .item-content a:hover {
    transition: 0.3s;
  }
  body.home .c-box04 .list .item .item-content a:hover:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  body.home .c-box04 .list .item .item-content a {
    height: auto;
    padding: 30px 30px 40px;
  }
}
body.home .c-box04 .list .item .item-content a::after {
  content: "";
  position: absolute;
  bottom: 25px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-image: url("../img/common/icn-ar-r-white.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 6px 8px;
  background-color: #20319d;
}
@media screen and (max-width: 767px) {
  body.home .c-box04 .list .item .item-content a::after {
    bottom: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
  }
}
body.home .c-box04 .list .item .item-content .number {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 5px;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body.home .c-box04 .list .item .item-content .number {
    font-size: 13px;
  }
}
body.home .c-box04 .list .item .item-content .number::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #313333;
}
body.home .c-box04 .list .item .item-content .item-title {
  position: relative;
  padding-bottom: 20px;
  font-size: 48px;
  color: #20319d;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  body.home .c-box04 .list .item .item-content .item-title {
    font-size: 40px;
  }
}
body.home .c-box04 .list .item .item-content .item-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 6px;
  background-color: #efb71a;
}
@media screen and (max-width: 767px) {
  body.home .c-box04 .list .item .item-content .item-title::before {
    width: 65px;
    height: 4px;
  }
}
body.home .c-box04 .list .item .item-content p {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  body.home .c-box04 .list .item .item-content p {
    font-size: 13px;
  }
}
body.home .c-box05 {
  padding: 110px 0 100px;
}
@media screen and (max-width: 767px) {
  body.home .c-box05 {
    padding: 60px 0;
  }
}
body.home .c-box05 .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 50px;
}
@media screen and (max-width: 900px) {
  body.home .c-box05 .head {
    flex-wrap: wrap;
    gap: 40px;
  }
}
body.home .c-box05 .head .title {
  font-size: 48px;
  font-weight: bold;
  color: #20319d;
}
@media screen and (max-width: 900px) {
  body.home .c-box05 .head .title {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  body.home .c-box05 .head .title {
    font-size: 32px;
  }
}
body.home .c-box05 .head p {
  font-size: 16px;
  line-height: 1.63;
}
@media screen and (max-width: 767px) {
  body.home .c-box05 .head p {
    margin-top: 35px;
    font-size: 14px;
  }
}
body.home .c-box05 .list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0 1.428%;
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  body.home .c-box05 .list {
    gap: 10px 2.9333%;
    margin-top: 50px;
  }
}
body.home .c-box05 .list .item {
  width: 11.25%;
}
@media screen and (max-width: 1000px) {
  body.home .c-box05 .list .item {
    width: 22.8%;
  }
}
body.home .c-box05 .list .item a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 135px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 0 5.6px 0.4px rgba(83, 99, 134, 0.1);
}
@media screen and (max-width: 1000px) {
  body.home .c-box05 .list .item a {
    height: 20.4vw;
  }
}
body.home .c-box05 .list .item a img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
body.home .c-box05 .common-btn {
  margin-top: 50px;
}
body.home .c-box05 .common-btn a {
  width: 160px;
  height: 60px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  body.home .c-box05 .common-btn a {
    width: 190px;
    margin: 0 auto;
  }
}

/*--------------------------
SUB
----------------------------*/
body.sub {
  background-color: #20319d;
}
body.sub article .bread-crumb {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
}
@media screen and (max-width: 1240px) {
  body.sub article .bread-crumb {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  body.sub article .bread-crumb {
    padding: 0 20px;
  }
}
body.sub article .bread-crumb a,
body.sub article .bread-crumb span {
  color: #fff;
  font-size: 12px;
}
body.sub article .bread-crumb a {
  padding-bottom: 2px;
  border-bottom: 1px solid #fff;
}
body.sub article .bread-crumb .sep {
  margin: 0 8px;
}
body.sub article .bread-crumb > span:nth-of-type(5) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
body.sub article .page-headding {
  padding-top: 40px;
  height: 240px;
}
@media screen and (max-width: 767px) {
  body.sub article .page-headding {
    padding-top: 25px;
    padding-bottom: 45px;
    height: auto;
  }
}
body.sub article .page-headding.text-center {
  height: 285px;
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  body.sub article .page-headding.text-center {
    padding-top: 50px;
    height: 175px;
  }
}
body.sub article .page-headding .page-title {
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}
body.sub article .page-headding .page-title::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1) * 0.5em);
}
body.sub article .page-headding .page-title.jp {
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  body.sub article .page-headding .page-title {
    font-size: 34px;
  }
}
body.sub article .page-headding .page-description {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
}
body.sub article .page-headding .page-description::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.7) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.sub article .page-headding .page-description {
    margin-top: 40px;
    font-size: 12px;
  }
}
body.sub article .contents-box:not(.common-mailing) {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #fff;
  overflow: hidden;
}
body.sub article .contents-box:not(.common-mailing) .mailing {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  body.sub article .contents-box:not(.common-mailing) .mailing {
    margin-top: 60px;
  }
}

.signup-box {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 50px;
  background: url("../img/common/bg-signup.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .signup-box {
    padding-top: 35px 0 40px;
  }
}
.signup-box-inner {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .signup-box-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .signup-box-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.signup-box .signup-headding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .signup-box .signup-headding {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.signup-box .signup-headding .signup-title span {
  display: block;
}
.signup-box .signup-headding .signup-title span.eng {
  font-size: 60px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .signup-box .signup-headding .signup-title span.eng {
    font-size: 34px;
  }
}
.signup-box .signup-headding .signup-title span.jp {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .signup-box .signup-headding .signup-title span.jp {
    font-size: 12px;
  }
}
.signup-box .signup-headding p {
  width: 48%;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.71;
}
.signup-box .signup-headding p::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.71) * 0.5em);
}
@media screen and (max-width: 767px) {
  .signup-box .signup-headding p {
    width: 75%;
    max-width: 100%;
    margin-top: 25px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 500px) {
  .signup-box .signup-headding p {
    width: 100%;
    padding-left: 0;
  }
}
.signup-box .signup-form {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .signup-box .signup-form {
    width: 75%;
    margin: 25px auto 0;
  }
}
@media screen and (max-width: 500px) {
  .signup-box .signup-form {
    width: 100%;
  }
}
.signup-box .signup-form .form-headding {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 33px;
}
@media screen and (max-width: 767px) {
  .signup-box .signup-form .form-headding {
    flex-wrap: wrap;
    gap: 10px 0;
  }
}
.signup-box .signup-form .form-title {
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.37px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .signup-box .signup-form .form-title {
    font-size: 15px;
  }
}
.signup-box .signup-form .form-content {
  flex-grow: 1;
  width: 100%;
  max-width: 660px;
}
.signup-box .signup-form .form-content input {
  width: 100%;
  height: 50px;
  padding: 0 25px;
  border-radius: 9px;
  font-size: 16px;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1.44px;
}
.signup-box .signup-form .form-content input:placeholder-shown {
  color: #b5b5b5;
}
.signup-box .signup-form .form-content input::-webkit-input-placeholder {
  color: #b5b5b5;
}
.signup-box .signup-form .form-content input:-moz-placeholder {
  color: #b5b5b5;
}
.signup-box .signup-form .form-content input::-moz-placeholder {
  color: #b5b5b5;
}
.signup-box .signup-form .form-content input:-ms-input-placeholder {
  color: #b5b5b5;
}
@media screen and (max-width: 767px) {
  .signup-box .signup-form .form-content input {
    height: 55px;
    border-radius: 5px;
    font-size: 13px;
  }
}
.signup-box .signup-form .submit-btn {
  margin-top: 35px;
}
.signup-box .signup-form .submit-btn button {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .signup-box .signup-form .submit-btn button:hover {
    background-color: #fff;
    color: #212121;
  }
}

.smf-form .smf-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .smf-form .smf-item {
    gap: 0;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}
.smf-form .smf-item .smf-item__col--label {
  flex-shrink: 0;
  width: 180px;
  padding-top: 15px;
  padding-left: 15px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .smf-form .smf-item .smf-item__col--label {
    width: 100%;
    font-size: 16px;
  }
}
.smf-form .smf-item .smf-item__col--label.must {
  position: relative;
}
.smf-form .smf-item .smf-item__col--label.must::before {
  position: absolute;
  top: 20px;
  left: 0;
  content: "※";
  font-size: 14px;
  color: #f00;
}
.smf-form .smf-item .smf-item__col--controls {
  width: calc(100% - 180px);
}
@media screen and (max-width: 767px) {
  .smf-form .smf-item .smf-item__col--controls {
    width: 100%;
    margin-top: 10px;
  }
}
.smf-form .smf-item .smf-item__col--controls input,
.smf-form .smf-item .smf-item__col--controls textarea {
  width: 100%;
  height: 60px;
  padding: 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  background-color: #fff;
  border-radius: 16px;
  font-size: 16px;
  line-height: 1.6;
}
.smf-form .smf-item .smf-item__col--controls input::before,
.smf-form .smf-item .smf-item__col--controls textarea::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
}
.smf-form .smf-item .smf-item__col--controls input:placeholder-shown,
.smf-form .smf-item .smf-item__col--controls textarea:placeholder-shown {
  color: #b5b5b5;
}
.smf-form .smf-item .smf-item__col--controls input::-webkit-input-placeholder,
.smf-form .smf-item .smf-item__col--controls textarea::-webkit-input-placeholder {
  color: #b5b5b5;
}
.smf-form .smf-item .smf-item__col--controls input:-moz-placeholder,
.smf-form .smf-item .smf-item__col--controls textarea:-moz-placeholder {
  color: #b5b5b5;
}
.smf-form .smf-item .smf-item__col--controls input::-moz-placeholder,
.smf-form .smf-item .smf-item__col--controls textarea::-moz-placeholder {
  color: #b5b5b5;
}
.smf-form .smf-item .smf-item__col--controls input:-ms-input-placeholder,
.smf-form .smf-item .smf-item__col--controls textarea:-ms-input-placeholder {
  color: #b5b5b5;
}
@media screen and (max-width: 767px) {
  .smf-form .smf-item .smf-item__col--controls input,
  .smf-form .smf-item .smf-item__col--controls textarea {
    height: 50px;
    padding: 15px;
    font-size: 14px;
    border-radius: 10px;
  }
}
.smf-form .smf-item .smf-item__col--controls input {
  max-width: 660px;
}
.smf-form .smf-item .smf-item__col--controls textarea {
  height: 370px;
  resize: none;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .smf-form .smf-item .smf-item__col--controls textarea {
    height: 200px;
  }
}
.smf-form .smf-item.agree {
  margin-top: 90px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .smf-form .smf-item.agree {
    margin-top: 50px;
  }
}
.smf-form .smf-item.agree .check-box a {
  text-decoration: underline;
}
.smf-form .smf-item.agree .check-box label {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  overflow: hidden;
  position: relative;
  padding-left: 25px;
  display: inline-block;
  box-sizing: border-box;
  height: 25px;
}
.smf-form .smf-item.agree .check-box label:before {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  left: 0px;
  top: 0;
  border: 1px solid #fff;
  z-index: 3;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 3px;
}
.smf-form .smf-item.agree .check-box label:after {
  content: '';
  position: absolute;
  top: 5px;
  left: 7px;
  display: block;
  width: 7px;
  height: 11px;
  border-right: 3px solid #222;
  border-bottom: 3px solid #222;
  transform: rotate(45deg);
  z-index: 3;
}
.smf-form .smf-item.agree .check-box label input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 4;
  top: 0;
  left: -41px;
  width: 21px;
  height: 21px;
  display: block;
  box-shadow: 41px 0px #fff;
}
.smf-form .smf-item.agree .check-box label input[type="checkbox"]:checked {
  box-shadow: none;
}
.smf-form .smf-item.agree .check-box label input[type="checkbox"]:checked:focus {
  box-shadow: 40px 0px #fff;
  opacity: 0.1;
}
.smf-form .smf-item.agree .check-box label span {
  display: inline-block;
  transform: translateY(-3px);
  padding-left: 12px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .smf-form .smf-item.agree .check-box label span {
    transform: translateY(0);
    font-size: 13px;
  }
}

.contact-box {
  padding-top: 150px;
  padding-bottom: 110px;
  background-color: #ececec;
}
@media screen and (max-width: 767px) {
  .contact-box {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}
.contact-box .mainbox {
  max-width: 1260px;
}
.contact-box .contact-headding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .contact-box .contact-headding {
    flex-wrap: wrap;
  }
}
.contact-box .contact-headding .contact-title {
  font-size: 60px;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .contact-box .contact-headding .contact-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-box .contact-headding .contact-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .contact-box .contact-headding .contact-title {
    width: 100%;
    font-size: 34px;
  }
}
.contact-box .contact-headding p {
  width: 582px;
}
@media screen and (max-width: 1024px) {
  .contact-box .contact-headding p {
    width: 63%;
  }
}
@media screen and (max-width: 767px) {
  .contact-box .contact-headding p {
    width: 100%;
  }
}
.contact-box .form-box {
  padding-top: 110px;
}
@media screen and (max-width: 767px) {
  .contact-box .form-box {
    padding-top: 20px;
  }
}
.contact-box .form-box .form-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .contact-box .form-box .form-item {
    gap: 0;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}
.contact-box .form-box .form-item .item-title {
  flex-shrink: 0;
  width: 180px;
  padding-top: 15px;
  padding-left: 15px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact-box .form-box .form-item .item-title {
    width: 100%;
    font-size: 16px;
  }
}
.contact-box .form-box .form-item .item-title.must {
  position: relative;
}
.contact-box .form-box .form-item .item-title.must::before {
  position: absolute;
  top: 20px;
  left: 0;
  content: "※";
  font-size: 14px;
  color: #f00;
}
.contact-box .form-box .form-item .item-content {
  width: calc(100% - 180px);
}
@media screen and (max-width: 767px) {
  .contact-box .form-box .form-item .item-content {
    width: 100%;
    margin-top: 10px;
  }
}
.contact-box .form-box .form-item .item-content input,
.contact-box .form-box .form-item .item-content textarea {
  width: 100%;
  height: 60px;
  padding: 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  background-color: #fff;
  border-radius: 16px;
  font-size: 16px;
  line-height: 1.6;
}
.contact-box .form-box .form-item .item-content input::before,
.contact-box .form-box .form-item .item-content textarea::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
}
.contact-box .form-box .form-item .item-content input:placeholder-shown,
.contact-box .form-box .form-item .item-content textarea:placeholder-shown {
  color: #b5b5b5;
}
.contact-box .form-box .form-item .item-content input::-webkit-input-placeholder,
.contact-box .form-box .form-item .item-content textarea::-webkit-input-placeholder {
  color: #b5b5b5;
}
.contact-box .form-box .form-item .item-content input:-moz-placeholder,
.contact-box .form-box .form-item .item-content textarea:-moz-placeholder {
  color: #b5b5b5;
}
.contact-box .form-box .form-item .item-content input::-moz-placeholder,
.contact-box .form-box .form-item .item-content textarea::-moz-placeholder {
  color: #b5b5b5;
}
.contact-box .form-box .form-item .item-content input:-ms-input-placeholder,
.contact-box .form-box .form-item .item-content textarea:-ms-input-placeholder {
  color: #b5b5b5;
}
@media screen and (max-width: 767px) {
  .contact-box .form-box .form-item .item-content input,
  .contact-box .form-box .form-item .item-content textarea {
    height: 50px;
    padding: 15px;
    font-size: 14px;
    border-radius: 10px;
  }
}
.contact-box .form-box .form-item .item-content input {
  max-width: 660px;
}
.contact-box .form-box .form-item .item-content textarea {
  height: 370px;
  resize: none;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .contact-box .form-box .form-item .item-content textarea {
    height: 200px;
  }
}
.contact-box .form-box .agree-box {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .contact-box .form-box .agree-box {
    margin-top: 50px;
  }
}
.contact-box .form-box .agree-box .check-box {
  text-align: center;
}
.contact-box .form-box .agree-box .check-box a {
  text-decoration: underline;
}
.contact-box .form-box .agree-box .check-box label {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  overflow: hidden;
  position: relative;
  padding-left: 25px;
  display: inline-block;
  box-sizing: border-box;
  height: 25px;
}
.contact-box .form-box .agree-box .check-box label:before {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  left: 0px;
  top: 0;
  border: 1px solid #fff;
  z-index: 3;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 3px;
}
.contact-box .form-box .agree-box .check-box label:after {
  content: '';
  position: absolute;
  top: 5px;
  left: 7px;
  display: block;
  width: 7px;
  height: 11px;
  border-right: 3px solid #222;
  border-bottom: 3px solid #222;
  transform: rotate(45deg);
  z-index: 3;
}
.contact-box .form-box .agree-box .check-box label input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 4;
  top: 0;
  left: -41px;
  width: 21px;
  height: 21px;
  display: block;
  box-shadow: 41px 0px #fff;
}
.contact-box .form-box .agree-box .check-box label input[type="checkbox"]:checked {
  box-shadow: none;
}
.contact-box .form-box .agree-box .check-box label input[type="checkbox"]:checked:focus {
  box-shadow: 40px 0px #fff;
  opacity: 0.1;
}
.contact-box .form-box .agree-box .check-box label span {
  display: inline-block;
  transform: translateY(-3px);
  padding-left: 12px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .contact-box .form-box .agree-box .check-box label span {
    transform: translateY(0);
    font-size: 13px;
  }
}

.submit-btn {
  position: relative;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .submit-btn {
    margin-top: 50px;
  }
}
.submit-btn button {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 220px;
  height: 65px;
  margin: 0 auto;
  padding-left: 15px;
  font-size: 16px;
  font-weight: 700;
  color: #212121;
  border: 1px solid #262525;
  border-radius: 32.5px;
  line-height: 63px;
  text-align: center;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .submit-btn button:hover {
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  .submit-btn button:hover {
    background-color: #212121;
    color: #fff;
  }
}
.submit-btn button::before {
  content: "";
  position: absolute;
  z-index: 5;
  left: 35px;
  top: 33px;
  background: #fabd00;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
}

/*--------------------------
CONTACT
----------------------------*/
body.contact-thanks article {
  padding-top: 25px;
  background-color: #fff;
  border-radius: 70px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body.contact-thanks article {
    padding-top: 20px;
    border-radius: 25px;
  }
}
body.contact-thanks article .bread-crumb {
  margin-top: 0;
}
body.contact-thanks article .bread-crumb a,
body.contact-thanks article .bread-crumb span {
  color: #282523;
}
body.contact-thanks article .contents-box {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  padding: 130px 0 100px;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  body.contact-thanks article .contents-box {
    padding: 60px 0 50px;
  }
}
body.contact-thanks article .contents-box .contact-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body.contact-thanks article .contents-box .contact-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  body.contact-thanks article .contents-box .sentence {
    text-align: center;
  }
}
body.contact-thanks article .contents-box p {
  margin-top: 80px;
  font-size: 20px;
  line-height: 1.6;
}
body.contact-thanks article .contents-box p::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.contact-thanks article .contents-box p {
    display: inline-block;
    text-align: left;
    margin-top: 50px;
    font-size: 14px;
  }
}
body.contact-thanks article .contents-box .btn {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  body.contact-thanks article .contents-box .btn {
    margin-top: 50px;
  }
}
body.contact-thanks article .contents-box .btn a {
  margin: 0 auto;
}

/*--------------------------
ABOUT
----------------------------*/
body.about article .contents-box:not(.common-mailing) {
  padding-bottom: 0;
}
body.about article .contents-box:not(.common-mailing) .contact-box {
  margin-top: 80px;
  padding-top: 45px;
}
body.about article .contents-box:not(.common-mailing) .mailing {
  margin-top: 0;
  padding-top: 0;
}

.post-body .is-style-clear {
  display: flow-root;
}
.post-body .alignnone {
  margin: 15px 0;
}
.post-body .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.post-body .clearfix {
  clear: both;
}
.post-body .alignright {
  float: right;
}
.post-body .alignleft {
  float: left;
}
.post-body .wp-block {
  max-width: 800px;
}
.post-body .wp-block[data-align="center"] .wp-block-embed {
  text-align: center;
}
.post-body .wp-block-embed.aligncenter {
  text-align: center;
}
.post-body .wp-block-image {
  margin-top: 20px;
  margin-bottom: 20px;
}
.post-body .wp-block-image figure {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .post-body .wp-block-image figure {
    width: 100%;
  }
}
.post-body .wp-block-image figure img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .post-body .wp-block-image figure img {
    border-radius: 10px;
  }
}
.post-body .wp-element-caption {
  font-size: 14px;
  color: #b0b0b0;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .post-body .wp-element-caption {
    font-size: 12px;
  }
}
.post-body .wp-block-group p {
  margin-top: 0;
}
.post-body .wp-block-group p + p {
  margin-top: 20px;
}
.post-body .wp-block-group figure.alignleft {
  margin: 0px 45px 15px 0;
}
.post-body .wp-block-group figure.alignright {
  margin: 0px 0 15px 45px;
}
.post-body .wp-block-group .wp-element-caption {
  display: block;
  margin: 15px 0 0 0;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .post-body .wp-block-group .wp-element-caption {
    font-size: 12px;
  }
}
.post-body .wp-block-columns {
  margin-top: 40px;
  margin-bottom: 40px;
}
.post-body .wp-block-columns.wp-container-8 .is-style-card_title {
  margin-top: 20px;
}
.post-body .wp-block-columns.wp-container-8 p {
  margin-top: 15px;
  line-height: 1.67;
}
.post-body .wp-block-columns.wp-container-8 p::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.67) * 0.5em);
}
.post-body .wp-block-columns figure {
  margin: 0 0 30px 0;
}
.post-body .wp-block-columns figure .components-resizable-box__container {
  display: block;
}
.post-body .wp-block-columns figure img {
  border-radius: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .post-body .wp-block-columns figure img {
    border-radius: 10px;
  }
}
.post-body .wp-block-columns .is-style-card_title {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.post-body .wp-block-columns .is-style-card_title::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
}
@media screen and (max-width: 767px) {
  .post-body .wp-block-columns .is-style-card_title {
    margin-top: 18px;
    font-size: 15px;
  }
}
.post-body .wp-block-columns p {
  margin-top: 20px;
  line-height: 2.17;
}
.post-body .wp-block-columns p::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2.17) * 0.5em);
}
.post-body .wp-block-flexible-table-block-table {
  margin: 80px 0 70px;
}
@media screen and (max-width: 767px) {
  .post-body .wp-block-flexible-table-block-table {
    margin: 45px 0 20px;
    overflow-x: auto;
  }
}
.post-body .wp-block-flexible-table-block-table table {
  width: 100% !important;
  border-left: 1px #3b3b3b solid !important;
  border-top: 1px #3b3b3b solid !important;
}
@media screen and (max-width: 767px) {
  .post-body .wp-block-flexible-table-block-table table {
    width: 800px !important;
    max-width: 800px !important;
  }
}
.post-body .wp-block-flexible-table-block-table table th,
.post-body .wp-block-flexible-table-block-table table td {
  width: 20% !important;
  vertical-align: middle !important;
  padding: 15px 12px !important;
  text-align: center !important;
  border-right: 1px #3b3b3b solid !important;
  border-bottom: 1px #3b3b3b solid !important;
  font-size: 13px !important;
}
.post-body .wp-block-flexible-table-block-table table th {
  color: #fff !important;
  background: #182636 !important;
  text-align: center !important;
  font-weight: bold !important;
}
.post-body .wp-block-flexible-table-block-table table th:not(:last-child) {
  border-right: none !important;
}
.post-body .wp-block-flexible-table-block-table table th:not(:nth-of-type(1)) {
  border-left: 1px solid #fff !important;
}
.post-body .wp-block-flexible-table-block-table table td {
  background: #fff !important;
}
.post-body h2 {
  margin: 80px 0 30px;
  font-size: 36px;
  font-weight: bold;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post-body h2 {
    margin: 40px 0 30px;
    padding-left: 15px;
    font-size: 19px;
  }
}
.post-body h2:before {
  position: absolute;
  content: "";
  left: 0;
  top: 10px;
  width: 6px;
  height: 20px;
  background: #182636;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .post-body h2:before {
    width: 3px;
    height: 10px;
  }
}
.post-body h2:after {
  position: absolute;
  content: "";
  left: 0;
  top: 30px;
  width: 6px;
  height: 20px;
  background: #fabd00;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .post-body h2:after {
    top: 20px;
    width: 3px;
    height: 10px;
  }
}
.post-body h3 {
  margin: 70px 0 25px;
  border-bottom: 1px #a2a3a3 solid;
  font-size: 29px;
  font-weight: bold;
  padding: 0 0 15px;
}
@media screen and (max-width: 767px) {
  .post-body h3 {
    margin: 45px 0 20px;
    padding-bottom: 10px;
    font-size: 16px;
  }
}
.post-body h4 {
  margin: 70px 0 25px;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .post-body h4 {
    margin: 45px 0 20px;
    font-size: 14px;
  }
}
.post-body h4 + p {
  margin-top: 30px;
}
.post-body h5 {
  font-size: 24px;
  font-weight: bold;
  margin: 70px 0 25px;
}
.post-body p {
  margin-top: 30px;
  font-size: 16px;
  line-height: 2.5;
}
.post-body p::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2.5) * 0.5em);
}
@media screen and (max-width: 767px) {
  .post-body p {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2;
  }
  .post-body p::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 2) * 0.5em);
  }
}
.post-body p a {
  padding-bottom: 5px;
  text-decoration: none;
  border-bottom: 1px solid #222;
}
.post-body mark {
  position: relative;
  background: url("../img/common/mark.png") repeat-x center bottom;
}
.post-body strong {
  font-weight: bold;
}
.post-body ul,
.post-body ol {
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .post-body .is-style-postdot {
    margin: 30px 0;
  }
}
.post-body .is-style-postdot li {
  border-bottom: 1px #a2a3a3 solid;
  padding: 16px 10px 16px 45px;
  line-height: 2.25;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post-body .is-style-postdot li {
    padding: 20px 10px 20px 35px;
  }
}
.post-body .is-style-postdot li:before {
  position: absolute;
  content: "";
  background: #fabd00;
  width: 10px;
  height: 10px;
  left: 15px;
  top: 32px;
  border-radius: 10px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .post-body .is-style-postdot li:before {
    left: 10px;
    width: 5px;
    height: 5px;
  }
}
.post-body .is-style-postnumber {
  margin: 60px 0;
  counter-reset: count 0;
}
@media screen and (max-width: 767px) {
  .post-body .is-style-postnumber {
    margin: 30px 0px;
  }
}
.post-body .is-style-postnumber li {
  border-bottom: 1px #a2a3a3 solid;
  padding: 16px 10px 16px 45px;
  line-height: 2.25;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post-body .is-style-postnumber li {
    padding: 20px 10px 20px 35px;
  }
}
.post-body .is-style-postnumber li::before {
  content: counter(count);
  counter-increment: count 1;
  position: absolute;
  left: 15px;
  top: 27px;
  width: 22px;
  color: #fff;
  height: 22px;
  background: #182636;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .post-body .is-style-postnumber li::before {
    top: 28px;
    left: 8px;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    font-size: 10px;
  }
}
.post-body ol li {
  margin-left: 15px !important;
  font-size: 16px;
  line-height: 1.4;
  list-style: decimal;
}
@media screen and (max-width: 767px) {
  .post-body ol li {
    font-size: 14px;
  }
}
.post-body ol li:not(:nth-of-type(1)) {
  margin-top: 15px;
}
.post-body ol ol {
  margin-top: 20px;
  padding-left: 30p;
}
.post-body .collaborators .title01 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 80px;
  gap: 0 40px;
}
@media screen and (max-width: 767px) {
  .post-body .collaborators .title01 {
    margin-top: 55px;
    gap: 0 20px;
  }
}
.post-body .collaborators .title01 h2 {
  font-size: 50px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .post-body .collaborators .title01 h2 {
    font-size: 34px;
  }
}
.post-body .collaborators .title01 h2::before {
  background: none;
}
.post-body .collaborators .title01 h2::after {
  background: none;
}
.post-body .collaborators .title01 p {
  font-size: 14px;
}
.post-body .collaborators .title01 p::before {
  margin-top: 0;
}
.post-body .collaborators-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  gap: 50px 6.66666%;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .post-body .collaborators-list {
    margin-top: 25px;
    gap: 25px 5%;
  }
}
.post-body .collaborators-list .item {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .post-body .collaborators-list .item {
    width: 30%;
  }
}
.post-body .collaborators-list .item a {
  color: inherit;
  text-decoration: none;
}
.post-body .collaborators-list .item .item-thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  aspect-ratio: 1 / 1;
  border: 1px solid #cac8c4;
}
.post-body .collaborators-list .item .item-name {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.57;
}
.post-body .collaborators-list .item .item-name::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.57) * 0.5em);
}
@media screen and (max-width: 767px) {
  .post-body .collaborators-list .item .item-name {
    margin-top: 10px;
    font-size: 12px;
  }
}

body.page-template-page-template article .page-headding .page-title {
  font-size: 55px;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  body.page-template-page-template article .page-headding .page-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 375px) {
  body.page-template-page-template article .page-headding .page-title {
    font-size: 24px;
  }
}

/*--------------------------
COLLABORATORS
----------------------------*/
body.sub.collaborators article .contents-box:not(.common-mailing) {
  padding-bottom: 0;
}

/*--------------------------
EVENTS
----------------------------*/
body.events-single article .contents-box {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  body.events-single article .contents-box {
    padding-top: 50px;
  }
}
body.events-single article .contents-box .event-information {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
body.events-single article .contents-box .event-information .col01 {
  width: 50%;
}
@media screen and (max-width: 1150px) {
  body.events-single article .contents-box .event-information .col01 {
    padding-right: 30px;
  }
}
@media screen and (max-width: 950px) {
  body.events-single article .contents-box .event-information .col01 {
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  body.events-single article .contents-box .event-information .col01 {
    width: 100%;
    padding-right: 0;
  }
}
body.events-single article .contents-box .event-information .col01 .meta-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
body.events-single article .contents-box .event-information .col01 .meta-wrap .category {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 30px;
  margin-left: 20px;
  padding: 0 15px;
  border-radius: 30px;
  border: 1px solid #cac8c4;
  font-size: 10px;
  font-weight: bold;
  color: #313131;
}
@media screen and (max-width: 767px) {
  body.events-single article .contents-box .event-information .col01 .meta-wrap .category {
    min-width: 80px;
    height: 26px;
    margin-left: 15px;
    border-radius: 26px;
    font-size: 10px;
  }
}
body.events-single article .contents-box .event-information .col01 .event-title {
  margin-top: 30px;
  font-size: 30px;
  line-height: 1.33;
  font-weight: bold;
}
body.events-single article .contents-box .event-information .col01 .event-title::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.33) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.events-single article .contents-box .event-information .col01 .event-title {
    margin-top: 20px;
    font-size: 20px;
  }
}
body.events-single article .contents-box .event-information .col01 .thumbnail {
  margin-top: 20px;
}
body.events-single article .contents-box .event-information .col01 .thumbnail img {
  width: 100%;
}
body.events-single article .contents-box .event-information .col01 p {
  margin-top: 50px;
  line-height: 2;
  font-size: 14px;
}
body.events-single article .contents-box .event-information .col01 p::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.events-single article .contents-box .event-information .col01 p {
    margin-top: 25px;
    font-size: 13px;
    line-height: 1.69;
  }
  body.events-single article .contents-box .event-information .col01 p::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.69) * 0.5em);
  }
}
body.events-single article .contents-box .event-information .col01 p a {
  color: #1053a0;
}
body.events-single article .contents-box .event-information .col02, body.events-single article .contents-box .event-information .thumbnail {
  position: relative;
  flex-shrink: 0;
  width: 520px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background-color: transparent;
}
body.events-single article .contents-box .event-information .col02::before, body.events-single article .contents-box .event-information .thumbnail::before {
  content: "";
  display: block;
  padding-top: 141.3793103448%;
}
body.events-single article .contents-box .event-information .col02 img, body.events-single article .contents-box .event-information .col02 iframe, body.events-single article .contents-box .event-information .thumbnail img, body.events-single article .contents-box .event-information .thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 950px) {
  body.events-single article .contents-box .event-information .col02, body.events-single article .contents-box .event-information .thumbnail {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  body.events-single article .contents-box .event-information .col02, body.events-single article .contents-box .event-information .thumbnail {
    width: 100%;
    border-radius: 15px;
  }
}
body.events-single article .contents-box .event-information .col02 .outlink, body.events-single article .contents-box .event-information .thumbnail .outlink {
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 30px;
}
@media screen and (max-width: 767px) {
  body.events-single article .contents-box .event-information .col02 .outlink, body.events-single article .contents-box .event-information .thumbnail .outlink {
    top: 15px;
    right: 15px;
    width: 40px;
  }
}
body.events-single article .contents-box .event-information .col02 .outlink img, body.events-single article .contents-box .event-information .thumbnail .outlink img {
  position: static;
  object-fit: inherit;
}
@media screen and (max-width: 767px) {
  body.events-single article .contents-box .event-information .col02 .outlink img, body.events-single article .contents-box .event-information .thumbnail .outlink img {
    width: 100%;
    height: auto;
  }
}
body.events-single article .contents-box .event-outline {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  body.events-single article .contents-box .event-outline {
    margin-top: 50px;
  }
}
body.events-single article .contents-box .event-outline .table-box {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  body.events-single article .contents-box .event-outline .table-box {
    margin-top: 20px;
  }
}
body.events-single article .contents-box .event-outline .table-box table {
  width: 100%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  body.events-single article .contents-box .event-outline .table-box table {
    font-size: 14px;
  }
}
body.events-single article .contents-box .event-outline .table-box table th, body.events-single article .contents-box .event-outline .table-box table td {
  padding: 20px 0;
  border: 1px solid #3b3b3b;
}
@media screen and (max-width: 767px) {
  body.events-single article .contents-box .event-outline .table-box table th, body.events-single article .contents-box .event-outline .table-box table td {
    padding: 15px 0;
  }
}
body.events-single article .contents-box .event-outline .table-box table th {
  width: 240px;
  font-weight: 500;
  text-align: center;
  background-color: #ececec;
}
@media screen and (max-width: 767px) {
  body.events-single article .contents-box .event-outline .table-box table th {
    width: 120px;
  }
}
body.events-single article .contents-box .event-outline .table-box table td {
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 400;
  line-height: 2;
}
body.events-single article .contents-box .event-outline .table-box table td::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.events-single article .contents-box .event-outline .table-box table td {
    padding-left: 15px;
    padding-right: 15px;
    line-height: 1.43;
  }
  body.events-single article .contents-box .event-outline .table-box table td::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.43) * 0.5em);
  }
}
body.events-single article .contents-box .event-outline .table-box table td a {
  color: #1053a0;
  text-decoration: underline;
}
body.events-single article .contents-box .btn {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  body.events-single article .contents-box .btn {
    margin-top: 40px;
  }
}
body.events-single article .contents-box .btn a {
  margin: 0 auto;
}
body.events-single article .contents-box .event-list {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  body.events-archive article .contents-box {
    padding-top: 50px;
  }
}
body.events-archive article .contents-box .comingsoon-information {
  padding: 50px;
  background: url("../img/events/bg.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  body.events-archive article .contents-box .comingsoon-information {
    padding: 25px 25px 30px;
  }
}
body.events-archive article .contents-box .comingsoon-information .inner-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.events-archive article .contents-box .comingsoon-information .inner-box {
    flex-wrap: wrap;
  }
}
body.events-archive article .contents-box .comingsoon-information .inner-box .col01 {
  width: 56.4%;
}
@media screen and (max-width: 767px) {
  body.events-archive article .contents-box .comingsoon-information .inner-box .col01 {
    width: 100%;
  }
}
body.events-archive article .contents-box .comingsoon-information .inner-box .col01 .tag span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 135px;
  height: 30px;
  background-color: #fabd00;
  font-size: 12px;
  font-family: "Poppins", serif;
  color: #182636;
  font-weight: bold;
  letter-spacing: 1.68px;
}
@media screen and (max-width: 767px) {
  body.events-archive article .contents-box .comingsoon-information .inner-box .col01 .tag span {
    width: 140px;
    height: 27px;
    font-size: 10px;
  }
}
body.events-archive article .contents-box .comingsoon-information .inner-box .col01 .event-title {
  margin-top: 25px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.33;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
body.events-archive article .contents-box .comingsoon-information .inner-box .col01 .event-title::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.33) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.events-archive article .contents-box .comingsoon-information .inner-box .col01 .event-title {
    font-size: 20px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
body.events-archive article .contents-box .comingsoon-information .inner-box .col01 p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
body.events-archive article .contents-box .comingsoon-information .inner-box .col01 p::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.events-archive article .contents-box .comingsoon-information .inner-box .col01 p {
    font-size: 13px;
    line-height: 1.69;
  }
  body.events-archive article .contents-box .comingsoon-information .inner-box .col01 p::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.69) * 0.5em);
  }
}
body.events-archive article .contents-box .comingsoon-information .inner-box .col02 {
  width: 35.45%;
  margin-top: 25px;
}
@media screen and (max-width: 1000px) {
  body.events-archive article .contents-box .comingsoon-information .inner-box .col02 {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  body.events-archive article .contents-box .comingsoon-information .inner-box .col02 {
    width: 100%;
    margin-top: 30px;
  }
}
body.events-archive article .contents-box .comingsoon-information .inner-box .col02 ul li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  body.events-archive article .contents-box .comingsoon-information .inner-box .col02 ul li {
    font-size: 11px;
  }
}
body.events-archive article .contents-box .comingsoon-information .inner-box .col02 ul li:not(:nth-of-type(1)) {
  margin-top: 15px;
}
body.events-archive article .contents-box .comingsoon-information .inner-box .col02 ul li span {
  line-height: 1.4;
}
body.events-archive article .contents-box .comingsoon-information .inner-box .col02 ul li span::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
}
body.events-archive article .contents-box .comingsoon-information .inner-box .col02 ul li .item-title {
  flex-shrink: 0;
  width: 60px;
  font-weight: bold;
  text-align-last: justify;
}
@media screen and (max-width: 767px) {
  body.events-archive article .contents-box .comingsoon-information .inner-box .col02 ul li .item-title {
    width: 45px;
  }
}
body.events-archive article .contents-box .comingsoon-information .inner-box .col02 ul li .item-content {
  flex-grow: 1;
  padding-left: 50px;
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  body.events-archive article .contents-box .comingsoon-information .inner-box .col02 ul li .item-content {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  body.events-archive article .contents-box .comingsoon-information .inner-box .col02 ul li .item-content {
    padding-left: 35px;
  }
}
body.events-archive article .contents-box .comingsoon-information .inner-box a {
  color: #ffd23d;
}
body.events-archive article .contents-box .comingsoon-information .btn {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  body.events-archive article .contents-box .comingsoon-information .btn {
    margin-top: 20px;
  }
}
body.events-archive article .contents-box .comingsoon-information .btn a {
  margin: 0 auto;
}
body.events-archive article .contents-box .sort-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  body.events-archive article .contents-box .sort-box {
    flex-wrap: wrap;
    gap: 20px 0;
    margin-top: 40px;
  }
  body.events-archive article .contents-box .sort-box select {
    width: 100%;
  }
}
body.events-archive article .contents-box .event-list {
  margin-top: 15px;
}

/*--------------------------
EXPERTS
----------------------------*/
body.experts-single article .contents-box {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box {
    padding-top: 50px;
  }
}
body.experts-single article .contents-box .experts-information {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 950px) {
  body.experts-single article .contents-box .experts-information {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .experts-information {
    padding-bottom: 50px;
  }
  body.experts-single article .contents-box .experts-information .headding {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
  }
  body.experts-single article .contents-box .experts-information .headding .thumbnail {
    width: 40%;
  }
  body.experts-single article .contents-box .experts-information .headding .headding-inner {
    width: 60%;
    padding-left: 25px;
  }
}
body.experts-single article .contents-box .experts-information .col01 {
  flex-grow: 1;
  margin-right: 140px;
}
@media screen and (max-width: 1150px) {
  body.experts-single article .contents-box .experts-information .col01 {
    margin-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .experts-information .col01 {
    margin-right: 0;
  }
}
body.experts-single article .contents-box .experts-information .col01 .profile-name {
  font-family: "Poppins", serif;
  font-size: 12px;
  font-weight: bold;
  color: #cfcfcf;
  letter-spacing: 1.68px;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .experts-information .col01 .profile-name {
    font-size: 11px;
  }
}
body.experts-single article .contents-box .experts-information .col01 .name {
  margin-top: 20px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
}
body.experts-single article .contents-box .experts-information .col01 .name::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .experts-information .col01 .name {
    margin-top: 15px;
    font-size: 21px;
  }
}
body.experts-single article .contents-box .experts-information .col01 p {
  margin-top: 40px;
  font-size: 14px;
  line-height: 2;
}
body.experts-single article .contents-box .experts-information .col01 p::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .experts-information .col01 p {
    margin-top: 25px;
    font-size: 13px;
    line-height: 1.69;
  }
  body.experts-single article .contents-box .experts-information .col01 p::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.69) * 0.5em);
  }
}
body.experts-single article .contents-box .experts-information .col01 .sns-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .experts-information .col01 .sns-list {
    margin-top: 25px;
    gap: 0 20px;
    justify-content: center;
  }
}
body.experts-single article .contents-box .experts-information .col02 {
  flex-shrink: 0;
  width: 385px;
  position: relative;
  background-color: transparent;
}
body.experts-single article .contents-box .experts-information .col02::before {
  content: "";
  display: block;
  padding-top: 100%;
}
body.experts-single article .contents-box .experts-information .col02 img, body.experts-single article .contents-box .experts-information .col02 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 950px) {
  body.experts-single article .contents-box .experts-information .col02 {
    width: 40%;
  }
}
body.experts-single article .contents-box .experts-information .col02 img {
  border-radius: 15px;
}
body.experts-single article .contents-box .history-box {
  margin-top: -30px;
  padding: 80px 0;
  background-color: #ececec;
}
@media screen and (max-width: 950px) {
  body.experts-single article .contents-box .history-box {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .history-box {
    margin-top: 0;
    padding: 40px 0;
  }
}
body.experts-single article .contents-box .history-box ul {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .history-box ul {
    margin-top: 20px;
  }
}
body.experts-single article .contents-box .history-box ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 60px;
  padding: 0 30px;
  background-color: #fff;
  border-radius: 15px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .history-box ul li {
    align-items: flex-start;
    height: auto;
    padding: 20px;
    border-radius: 0;
    font-size: 13px;
  }
}
body.experts-single article .contents-box .history-box ul li:not(:nth-of-type(1)) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .history-box ul li:not(:nth-of-type(1)) {
    margin-top: 15px;
  }
}
body.experts-single article .contents-box .history-box ul li .year {
  flex-shrink: 0;
  width: 150px;
  color: #b0b0b0;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .history-box ul li .year {
    width: 110px;
  }
}
body.experts-single article .contents-box .join-program-box {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .join-program-box {
    padding-top: 45px;
  }
}
body.experts-single article .contents-box .join-program-box .box {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .join-program-box .box {
    margin-top: 30px;
  }
}
body.experts-single article .contents-box .join-program-box .box .box-headline {
  margin-bottom: 20px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .join-program-box .box .box-headline {
    font-size: 15px;
  }
}
body.experts-single article .contents-box .join-program-box .box .category-list span:not(.current) {
  color: #b0b0b0;
}
body.experts-single article .contents-box .article-box {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .article-box {
    margin-top: 50px;
  }
}
body.experts-single article .contents-box .article-box .sort-box {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .article-box .sort-box {
    display: block;
    margin-top: 30px;
  }
  body.experts-single article .contents-box .article-box .sort-box select {
    width: 100%;
  }
}
body.experts-single article .contents-box .article-box .article-main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .article-box .article-main-content {
    flex-wrap: wrap;
    margin-top: 15px;
  }
}
body.experts-single article .contents-box .article-box .article-main-content .article-side {
  flex-shrink: 0;
  width: 320px;
  padding: 40px;
  background-color: #182337;
}
@media screen and (max-width: 850px) {
  body.experts-single article .contents-box .article-box .article-main-content .article-side {
    width: 250px;
  }
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .article-box .article-main-content .article-side {
    width: 100%;
    padding: 0;
    background-color: transparent;
  }
  body.experts-single article .contents-box .article-box .article-main-content .article-side select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    border-radius: 0;
    width: 100%;
    height: 50px;
    padding-left: 25px;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    border: 1px solid #212121;
    background: url("../img/common/icon_arrow_btm_white.png") no-repeat calc(100% - 20px) center;
    background-size: 8px auto;
    background-color: #182337;
    font-family: "Noto Sans JP", sans-serif;
  }
}
body.experts-single article .contents-box .article-box .article-main-content .article-side ul li {
  border-bottom: 1px solid transparent;
}
body.experts-single article .contents-box .article-box .article-main-content .article-side ul li:not(:nth-of-type(1)) {
  margin-top: 30px;
}
body.experts-single article .contents-box .article-box .article-main-content .article-side ul li.current {
  border-bottom: 1px solid #fff;
}
body.experts-single article .contents-box .article-box .article-main-content .article-side ul li a {
  display: block;
  padding-bottom: 10px;
  font-size: 16px;
  color: #fff;
  line-height: 1.75;
}
body.experts-single article .contents-box .article-box .article-main-content .article-side ul li a::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.75) * 0.5em);
}
body.experts-single article .contents-box .article-box .article-main-content .article-main {
  position: relative;
  flex-grow: 1;
  width: calc(100% - 320px);
  min-height: 300px;
  padding-left: 95px;
}
body.experts-single article .contents-box .article-box .article-main-content .article-main::before {
  content: "";
  display: none;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}
body.experts-single article .contents-box .article-box .article-main-content .article-main.active::before {
  display: block;
  animation: show linear 0.3s;
}
@media screen and (max-width: 1000px) {
  body.experts-single article .contents-box .article-box .article-main-content .article-main {
    padding-left: 30px;
  }
}
@media screen and (max-width: 850px) {
  body.experts-single article .contents-box .article-box .article-main-content .article-main {
    width: calc(100% - 250px);
  }
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .article-box .article-main-content .article-main {
    width: 100%;
    padding: 0;
  }
}
body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 30px 0;
  border-bottom: 1px solid #cecdcd;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item {
    padding: 20px 0;
  }
}
body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item:nth-of-type(1) {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item:nth-of-type(1) {
    padding-top: 25px;
  }
}
body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item > a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item > a:hover {
  background: rgba(255, 255, 255, 0.3);
}
body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item .item-thumbnail {
  flex-shrink: 0;
  width: 200px;
  position: relative;
  background-color: transparent;
}
body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item .item-thumbnail::before {
  content: "";
  display: block;
  padding-top: 69.1542288557%;
}
body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item .item-thumbnail img, body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item .item-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item .item-thumbnail {
    width: 135px;
  }
}
body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item .item-sentence {
  flex-grow: 1;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item .item-sentence {
    padding-left: 20px;
  }
}
body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item .item-sentence .item-date {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item .item-sentence .item-date {
    font-size: 11px;
  }
}
body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item .item-sentence .item-title {
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item .item-sentence .item-title::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.75) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item .item-sentence .item-title {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.27;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item .item-sentence .item-title::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.27) * 0.5em);
  }
}
body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item .item-sentence p {
  margin-top: 30px;
  font-size: 14px;
  line-height: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item .item-sentence p::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .article-box .article-main-content .article-main .article-list .item .item-sentence p {
    display: none;
  }
}
body.experts-single article .contents-box .article-box .article-main-content .article-main .btn {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  body.experts-single article .contents-box .article-box .article-main-content .article-main .btn {
    margin-top: 40px;
  }
}
body.experts-single article .contents-box .article-box .article-main-content .article-main .btn a {
  margin: 0 auto;
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 767px) {
  body.experts-archive article .contents-box {
    padding-top: 50px;
  }
}
body.experts-archive article .contents-box .category-list {
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  body.experts-archive article .contents-box .category-list {
    padding: 0;
  }
}
body.experts-archive article .contents-box .experts-list {
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  body.experts-archive article .contents-box .experts-list {
    margin-top: 45px;
  }
}

/*--------------------------
NEWS
----------------------------*/
body.news-single article {
  padding-top: 25px;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body.news-single article {
    padding-top: 20px;
  }
}
body.news-single article .bread-crumb {
  margin-top: 0;
}
body.news-single article .bread-crumb a,
body.news-single article .bread-crumb span {
  color: #282523;
}
body.news-single article .contents-box:not(.common-mailing) {
  border-radius: 0;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  body.news-single article .contents-box:not(.common-mailing) {
    padding-top: 55px;
  }
}
body.news-single article .contents-box:not(.common-mailing) .contents-inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
body.news-single article .contents-box:not(.common-mailing) .post-headding .post-title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.33;
}
body.news-single article .contents-box:not(.common-mailing) .post-headding .post-title::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.33) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.news-single article .contents-box:not(.common-mailing) .post-headding .post-title {
    font-size: 20px;
    line-height: 1.5;
  }
  body.news-single article .contents-box:not(.common-mailing) .post-headding .post-title::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.5) * 0.5em);
  }
}
body.news-single article .contents-box:not(.common-mailing) .post-headding .meta-wrap {
  display: inline-block;
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  body.news-single article .contents-box:not(.common-mailing) .post-headding .meta-wrap {
    margin-top: 25px;
  }
}
body.news-single article .contents-box:not(.common-mailing) .thumbnail {
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  body.news-single article .contents-box:not(.common-mailing) .thumbnail {
    margin: 45px 0 25px;
  }
}
body.news-single article .contents-box:not(.common-mailing) .thumbnail img {
  width: 100%;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  body.news-single article .contents-box:not(.common-mailing) .thumbnail img {
    border-radius: 10px;
  }
}
body.news-single article .contents-box:not(.common-mailing) .pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 60px;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  body.news-single article .contents-box:not(.common-mailing) .pager {
    justify-content: center;
    margin-top: 60px;
    gap: 0 20px;
  }
}
body.news-single article .contents-box:not(.common-mailing) .pager .prev-btn,
body.news-single article .contents-box:not(.common-mailing) .pager .next-btn {
  flex-shrink: 0;
  width: 230px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  body.news-single article .contents-box:not(.common-mailing) .pager .prev-btn,
  body.news-single article .contents-box:not(.common-mailing) .pager .next-btn {
    width: 20px;
    height: 20px;
  }
  body.news-single article .contents-box:not(.common-mailing) .pager .prev-btn span,
  body.news-single article .contents-box:not(.common-mailing) .pager .next-btn span {
    display: none;
  }
}
body.news-single article .contents-box:not(.common-mailing) .pager .next-btn {
  padding-left: 25px;
  background: url("../img/common/pager-left.png") no-repeat left center;
}
body.news-single article .contents-box:not(.common-mailing) .pager .prev-btn {
  padding-right: 25px;
  background: url("../img/common/pager-right.png") no-repeat right center;
}

@media screen and (max-width: 767px) {
  body.news-archive article .contents-box {
    padding-top: 50px;
  }
}
body.news-archive article .contents-box .news-headding {
  height: 360px;
  padding-top: 125px;
  background: url("../img/news/bg.png") no-repeat center center;
  background-size: cover;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.news-archive article .contents-box .news-headding {
    height: auto;
    padding: 35px 20px 40px;
  }
}
body.news-archive article .contents-box .news-headding .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 150px;
}
@media screen and (max-width: 1000px) {
  body.news-archive article .contents-box .news-headding .inner {
    gap: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  body.news-archive article .contents-box .news-headding .inner {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  body.news-archive article .contents-box .news-headding .inner .col01 h2 {
    display: inline-block;
    text-align: left;
  }
}
body.news-archive article .contents-box .news-headding .inner .col01 h2 span {
  display: block;
  line-height: 1;
}
body.news-archive article .contents-box .news-headding .inner .col01 h2 span.eng {
  font-size: 60px;
  font-weight: bold;
  font-family: "Poppins", serif;
}
@media screen and (max-width: 767px) {
  body.news-archive article .contents-box .news-headding .inner .col01 h2 span.eng {
    font-size: 34px;
  }
}
body.news-archive article .contents-box .news-headding .inner .col01 h2 span.jp {
  margin-top: 10px;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  body.news-archive article .contents-box .news-headding .inner .col01 h2 span.jp {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  body.news-archive article .contents-box .news-headding .inner .col02 {
    margin-top: 25px;
    text-align: center;
  }
}
body.news-archive article .contents-box .news-headding .inner .col02 p {
  font-size: 14px;
  line-height: 1.7;
}
body.news-archive article .contents-box .news-headding .inner .col02 p::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.7) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.news-archive article .contents-box .news-headding .inner .col02 p {
    display: inline-block;
    text-align: left;
    font-size: 12px;
  }
}
body.news-archive article .contents-box .news-headding .btn {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  body.news-archive article .contents-box .news-headding .btn {
    margin-top: 25px;
  }
}
body.news-archive article .contents-box .news-headding .btn a {
  margin: 0 auto;
}
body.news-archive article .contents-box .category-list {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  body.news-archive article .contents-box .category-list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  body.news-archive article .contents-box .sort-box select {
    width: 70%;
  }
}
@media screen and (max-width: 500px) {
  body.news-archive article .contents-box .sort-box select {
    width: 100%;
  }
}
body.news-archive article .contents-box .wp-pagenavi a,
body.news-archive article .contents-box .wp-pagenavi span {
  border-radius: 0;
}

/*--------------------------
LECTURES
----------------------------*/
body.lectures article .contents-box .lectures-list .item:not(:nth-of-type(1)) {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  body.lectures article .contents-box .lectures-list .item:not(:nth-of-type(1)) {
    margin-top: 60px;
  }
}
body.lectures article .contents-box .lectures-list .item .dot-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
}
@media screen and (max-width: 767px) {
  body.lectures article .contents-box .lectures-list .item .dot-title {
    display: block;
  }
}
body.lectures article .contents-box .lectures-list .item .dot-title .experts-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 10px;
}
@media screen and (max-width: 767px) {
  body.lectures article .contents-box .lectures-list .item .dot-title .experts-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
body.lectures article .contents-box .lectures-list .item .dot-title .teacher-name {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  min-width: 175px;
  margin-top: 5px;
  padding: 0 15px;
  height: 40px;
  border-radius: 40px;
  background-color: #fabd00;
  font-size: 13px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body.lectures article .contents-box .lectures-list .item .dot-title .teacher-name {
    margin-top: 10px;
    min-width: 120px;
    height: 30px;
    border-radius: 30px;
    font-size: 11px;
  }
}
body.lectures article .contents-box .lectures-list .item .item-content {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  body.lectures article .contents-box .lectures-list .item .item-content {
    margin-top: 30px;
  }
}
body.lectures article .contents-box .lectures-list .item .item-content p {
  font-size: 16px;
  line-height: 2.5;
}
body.lectures article .contents-box .lectures-list .item .item-content p::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2.5) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.lectures article .contents-box .lectures-list .item .item-content p {
    font-size: 14px;
    line-height: 1.6;
  }
  body.lectures article .contents-box .lectures-list .item .item-content p::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.6) * 0.5em);
  }
}
body.lectures article .contents-box .lectures-list .item .item-content p + p {
  margin-top: 50px;
}
body.lectures article .contents-box .lectures-list .item .item-detail {
  margin-top: 85px;
}
@media screen and (max-width: 767px) {
  body.lectures article .contents-box .lectures-list .item .item-detail {
    margin-top: 50px;
    overflow-x: auto;
  }
}
body.lectures article .contents-box .lectures-list .item .item-detail table {
  width: 100%;
}
@media screen and (max-width: 767px) {
  body.lectures article .contents-box .lectures-list .item .item-detail table {
    width: 800px;
  }
}
body.lectures article .contents-box .lectures-list .item .item-detail table th,
body.lectures article .contents-box .lectures-list .item .item-detail table td {
  border: 1px solid #3b3b3b;
}
body.lectures article .contents-box .lectures-list .item .item-detail table thead th {
  height: 57px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background-color: #ececec;
}
@media screen and (max-width: 767px) {
  body.lectures article .contents-box .lectures-list .item .item-detail table thead th {
    height: 40px;
    font-size: 13px;
  }
}
body.lectures article .contents-box .lectures-list .item .item-detail table tbody td {
  padding: 20px;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}
body.lectures article .contents-box .lectures-list .item .item-detail table tbody td::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.lectures article .contents-box .lectures-list .item .item-detail table tbody td {
    padding: 15px;
    font-size: 13px;
  }
}
body.lectures article .contents-box .lectures-list .item .btn {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  body.lectures article .contents-box .lectures-list .item .btn {
    margin-top: 30px;
  }
}
body.lectures article .contents-box .lectures-list .item .btn a {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  body.lectures article .contents-box .lectures-list .item .btn a {
    margin: 0 auto;
  }
}

/*--------------------------
COLLABORATORS
----------------------------*/
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box {
    padding-top: 50px;
  }
}
body.collaborators article .contents-box .local-navi {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 40px;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .local-navi {
    gap: 0 15px;
  }
}
body.collaborators article .contents-box .local-navi a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 360px;
  height: 55px;
  border-radius: 55px;
  border: 1px solid #cac8c4;
  font-size: 14px;
  font-weight: bold;
  background: url("../img/common/icon_arrow_btm_orange02.png") no-repeat calc(100% - 30px) center;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .local-navi a {
    justify-content: flex-start;
    width: 100%;
    padding-left: 25px;
    font-size: 13px;
    background-position: calc(100% - 15px) center;
  }
}
body.collaborators article .contents-box .title01 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 80px;
  gap: 0 40px;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .title01 {
    margin-top: 55px;
    gap: 0 20px;
  }
}
body.collaborators article .contents-box .title01 h2 {
  font-size: 50px;
  font-family: "Poppins", serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .title01 h2 {
    font-size: 34px;
  }
}
body.collaborators article .contents-box .title01 p {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .title01 p {
    font-size: 12px;
  }
}
body.collaborators article .contents-box ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  gap: 50px 6.66666%;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box ul {
    margin-top: 25px;
    gap: 25px 5%;
  }
}
body.collaborators article .contents-box ul li {
  width: 20%;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box ul li {
    width: 30%;
  }
}
body.collaborators article .contents-box ul li .wp-block-post-featured-image {
  aspect-ratio: 1 / 1;
  border: 1px solid #cac8c4;
}
body.collaborators article .contents-box ul li .wp-block-post-featured-image a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 100%;
}
body.collaborators article .contents-box ul li .wp-block-post-title {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.57;
}
body.collaborators article .contents-box ul li .wp-block-post-title::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.57) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box ul li .wp-block-post-title {
    margin-top: 10px;
    font-size: 12px;
  }
}
body.collaborators article .contents-box .collaborators-wanted {
  position: relative;
  margin-top: 140px;
  padding-bottom: 100px;
  background-color: #ececec;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted {
    margin-top: 60px;
    padding-bottom: 50px;
  }
}
body.collaborators article .contents-box .collaborators-wanted::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 185px;
  background-color: #fff;
}
body.collaborators article .contents-box .collaborators-wanted .wanted-headding {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  align-content: center;
  height: 330px;
  background: url("../img/collaborators/bg.png") no-repeat center center;
  background-size: cover;
  color: #fff;
}
@media screen and (max-width: 1260px) {
  body.collaborators article .contents-box .collaborators-wanted .wanted-headding {
    width: calc(100% - 60px);
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .wanted-headding {
    width: calc(100% - 40px);
    height: auto;
    margin-left: 20px;
    margin-top: 60px;
    padding: 50px 20px;
  }
}
body.collaborators article .contents-box .collaborators-wanted .wanted-headding h2 {
  width: 100%;
}
body.collaborators article .contents-box .collaborators-wanted .wanted-headding h2 span {
  display: block;
  text-align: center;
}
body.collaborators article .contents-box .collaborators-wanted .wanted-headding h2 span.eng {
  font-size: 50px;
  font-weight: bold;
  font-family: "Poppins", serif;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .wanted-headding h2 span.eng {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .wanted-headding h2 span.jp {
    font-size: 12px;
  }
}
body.collaborators article .contents-box .collaborators-wanted .wanted-headding p {
  margin-top: 60px;
  font-size: 14px;
  line-height: 1.71;
}
body.collaborators article .contents-box .collaborators-wanted .wanted-headding p::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.71) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .wanted-headding p {
    margin-top: 30px;
    font-size: 12px;
    text-align: center;
  }
}
body.collaborators article .contents-box .collaborators-wanted .contents-inner {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .contents-inner {
    margin-top: 60px;
  }
}
body.collaborators article .contents-box .collaborators-wanted .media-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .media-box {
    flex-wrap: wrap;
    margin-top: 50px;
  }
  body.collaborators article .contents-box .collaborators-wanted .media-box.m-box01 {
    margin-top: 25px;
  }
}
body.collaborators article .contents-box .collaborators-wanted .media-box.reverse {
  flex-direction: row-reverse;
}
body.collaborators article .contents-box .collaborators-wanted .media-box.reverse .sentence {
  padding: 0 60px 0 0;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .media-box.reverse .sentence {
    padding: 0;
  }
}
body.collaborators article .contents-box .collaborators-wanted .media-box .thumbnail {
  flex-shrink: 0;
  width: 340px;
}
body.collaborators article .contents-box .collaborators-wanted .media-box .sentence {
  flex-grow: 1;
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .media-box .sentence {
    width: 100%;
    padding-left: 0;
  }
  body.collaborators article .contents-box .collaborators-wanted .media-box .sentence .headding {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
  }
  body.collaborators article .contents-box .collaborators-wanted .media-box .sentence .headding .thumbnail {
    width: 40%;
  }
  body.collaborators article .contents-box .collaborators-wanted .media-box .sentence .headding .box-title {
    padding-left: 30px;
  }
}
body.collaborators article .contents-box .collaborators-wanted .media-box .sentence .box-title span {
  display: block;
}
body.collaborators article .contents-box .collaborators-wanted .media-box .sentence .box-title span.eng {
  font-family: "Poppins", serif;
  font-size: 12px;
  color: #b3b3b3;
  font-weight: bold;
  letter-spacing: 1.68px;
}
body.collaborators article .contents-box .collaborators-wanted .media-box .sentence .box-title span.jp {
  margin-top: 5px;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .media-box .sentence .box-title span.jp {
    font-size: 18px;
  }
}
body.collaborators article .contents-box .collaborators-wanted .media-box .sentence p {
  margin-top: 30px;
  font-size: 14px;
  line-height: 2;
}
body.collaborators article .contents-box .collaborators-wanted .media-box .sentence p::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .media-box .sentence p {
    margin-top: 30px;
    font-size: 13px;
    line-height: 1.69;
  }
  body.collaborators article .contents-box .collaborators-wanted .media-box .sentence p::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.69) * 0.5em);
  }
}
body.collaborators article .contents-box .collaborators-wanted .media-box .sentence ul {
  margin-top: 12px;
}
body.collaborators article .contents-box .collaborators-wanted .media-box .sentence ul li {
  width: 100%;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.5;
}
body.collaborators article .contents-box .collaborators-wanted .media-box .sentence ul li::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .media-box .sentence ul li {
    font-size: 13px;
  }
}
body.collaborators article .contents-box .collaborators-wanted .media-box .sentence ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 9px;
  height: 9px;
  margin-top: 0;
  border-radius: 9px;
  background-color: #222;
}
body.collaborators article .contents-box .collaborators-wanted .media-box .sentence ul li:not(:nth-of-type(1)) {
  margin-top: 15px;
}
body.collaborators article .contents-box .collaborators-wanted .col-box {
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .col-box {
    margin-top: 80px;
  }
}
body.collaborators article .contents-box .collaborators-wanted .col-box .inner-box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .col-box .inner-box {
    flex-wrap: wrap;
    margin-top: 25px;
    gap: 20px 0;
  }
}
body.collaborators article .contents-box .collaborators-wanted .col-box .inner-box .col {
  width: 48.3%;
  padding: 40px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .col-box .inner-box .col {
    width: 100%;
    padding: 35px 20px;
  }
}
body.collaborators article .contents-box .collaborators-wanted .col-box .inner-box .col .col-title {
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .col-box .inner-box .col .col-title {
    font-size: 18px;
  }
}
body.collaborators article .contents-box .collaborators-wanted .col-box .inner-box .col p {
  margin-top: 35px;
  font-size: 16px;
  line-height: 1.63;
}
body.collaborators article .contents-box .collaborators-wanted .col-box .inner-box .col p::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.63) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .col-box .inner-box .col p {
    margin-top: 25px;
    font-size: 13px;
  }
}
body.collaborators article .contents-box .collaborators-wanted .col-box .inner-box .col p a {
  color: #1053a0;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  body.collaborators article .contents-box .collaborators-wanted .col-box .inner-box .col p a {
    text-decoration: none;
  }
  body.collaborators article .contents-box .collaborators-wanted .col-box .inner-box .col p a:hover {
    text-decoration: underline;
  }
}
body.collaborators article .contents-box .collaborators-wanted .col-box .inner-box .col p.address {
  font-weight: bold;
}
body.collaborators article .contents-box .collaborators-wanted .box {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .box {
    margin-top: 60px;
  }
}
body.collaborators article .contents-box .collaborators-wanted .box h4 {
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .box h4 {
    font-size: 18px;
  }
}
body.collaborators article .contents-box .collaborators-wanted .box p,
body.collaborators article .contents-box .collaborators-wanted .box ul {
  margin-top: 35px;
  font-size: 16px;
  line-height: 1.63;
}
body.collaborators article .contents-box .collaborators-wanted .box p::before,
body.collaborators article .contents-box .collaborators-wanted .box ul::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.63) * 0.5em);
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .collaborators-wanted .box p,
  body.collaborators article .contents-box .collaborators-wanted .box ul {
    margin-top: 25px;
    font-size: 13px;
  }
}
body.collaborators article .contents-box .collaborators-wanted .box p a,
body.collaborators article .contents-box .collaborators-wanted .box ul a {
  color: #1053a0;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  body.collaborators article .contents-box .collaborators-wanted .box p a,
  body.collaborators article .contents-box .collaborators-wanted .box ul a {
    text-decoration: none;
  }
  body.collaborators article .contents-box .collaborators-wanted .box p a:hover,
  body.collaborators article .contents-box .collaborators-wanted .box ul a:hover {
    text-decoration: underline;
  }
}
body.collaborators article .contents-box .mailing {
  margin-top: 0;
  padding-bottom: 80px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  body.collaborators article .contents-box .mailing {
    padding-bottom: 50px;
  }
}
body.collaborators article .local-navi-fixed {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 40px;
  padding: 15px 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #ccc;
  transform: translateY(100px);
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  body.collaborators article .local-navi-fixed {
    gap: 0 15px;
    padding: 15px;
  }
}
body.collaborators article .local-navi-fixed.active {
  transform: translateY(0);
}
body.collaborators article .local-navi-fixed a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 360px;
  height: 55px;
  border-radius: 55px;
  border: 1px solid #cac8c4;
  font-size: 14px;
  font-weight: bold;
  background: url("../img/common/icon_arrow_btm_orange02.png") no-repeat calc(100% - 30px) center;
}
@media screen and (max-width: 767px) {
  body.collaborators article .local-navi-fixed a {
    justify-content: flex-start;
    width: 100%;
    padding-left: 25px;
    font-size: 13px;
    background-position: calc(100% - 15px) center;
  }
}

body.collaborators-type article .contents-box .contents-inner .post-body {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  body.collaborators-type article .contents-box .contents-inner .post-body {
    flex-direction: column;
    gap: 30px 0;
  }
}
body.collaborators-type article .contents-box .contents-inner .post-body .thumbnail {
  padding: 0 40px 20px 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  body.collaborators-type article .contents-box .contents-inner .post-body .thumbnail {
    width: 100%;
    float: none;
    padding: 0 0 20px 0;
    text-align: center;
  }
}
body.collaborators-type article .contents-box .contents-inner .post-body .thumbnail img {
  width: 200px;
}
@media screen and (max-width: 767px) {
  body.collaborators-type article .contents-box .contents-inner .post-body .thumbnail img {
    width: 150px;
  }
}
body.collaborators-type article .contents-box .contents-inner .post-body a {
  color: #1053a0;
  text-decoration: underline;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  body.collaborators-type article .contents-box .contents-inner .post-body a {
    text-decoration: none;
  }
  body.collaborators-type article .contents-box .contents-inner .post-body a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  body.collaborators-type article .contents-box .contents-inner .post-body {
    width: 100%;
  }
}

/*--------------------------
CATEGORY
----------------------------*/
body.category-page article .contents-box,
body.collaborators-type article .contents-box {
  padding-top: 80px;
}
body.category-page article .contents-box .contents-inner,
body.collaborators-type article .contents-box .contents-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
body.category-page article .category-article,
body.collaborators-type article .category-article {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 160px;
}
@media screen and (max-width: 1240px) {
  body.category-page article .category-article,
  body.collaborators-type article .category-article {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  body.category-page article .category-article,
  body.collaborators-type article .category-article {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.category-page article .category-article .article-tab,
body.collaborators-type article .category-article .article-tab {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 0.53333%;
}
body.category-page article .category-article .article-tab::before,
body.collaborators-type article .category-article .article-tab::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #cbc9c6;
}
body.category-page article .category-article .article-tab .tab-item,
body.collaborators-type article .category-article .article-tab .tab-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 32.97778%;
  height: 95px;
  background-color: #ececec;
  font-size: 26px;
  font-weight: bold;
  font-family: "Poppins", serif;
  color: #999;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  body.category-page article .category-article .article-tab .tab-item:hover,
  body.collaborators-type article .category-article .article-tab .tab-item:hover {
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  body.category-page article .category-article .article-tab .tab-item:hover,
  body.collaborators-type article .category-article .article-tab .tab-item:hover {
    color: #4d4d4d;
    background-color: #fde8a9;
  }
}
body.category-page article .category-article .article-tab .tab-item.active,
body.collaborators-type article .category-article .article-tab .tab-item.active {
  z-index: 10;
  border: 2px solid #cbc9c6;
  border-bottom: 2px solid #fff;
  background-color: #fff;
  color: #4d4d4d;
}
body.category-page article .category-article .article-tab .tab-item.active::after,
body.collaborators-type article .category-article .article-tab .tab-item.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 17px;
  background-color: #fabd00;
}
@media screen and (max-width: 767px) {
  body.category-page article .category-article .article-tab .tab-item,
  body.collaborators-type article .category-article .article-tab .tab-item {
    height: 75px;
    font-size: 13px;
  }
}
body.category-page article .category-article .article-tab .tab-item::before,
body.collaborators-type article .category-article .article-tab .tab-item::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 2px #999;
  border-right: solid 2px #999;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  body.category-page article .category-article .article-tab .tab-item::before,
  body.collaborators-type article .category-article .article-tab .tab-item::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border: 0px;
    border-top: solid 2px #999;
    border-right: solid 2px #999;
    transform: rotate(135deg);
  }
}
body.category-page article .category-article .article-contents-box,
body.collaborators-type article .category-article .article-contents-box {
  position: relative;
  margin-top: 50px;
}
body.category-page article .category-article .article-contents-box::before,
body.collaborators-type article .category-article .article-contents-box::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}
body.category-page article .category-article .article-contents-box.active::before,
body.collaborators-type article .category-article .article-contents-box.active::before {
  display: block;
  animation: show linear 0.3s;
}
@media screen and (max-width: 767px) {
  body.category-page article .category-article .article-contents-box,
  body.collaborators-type article .category-article .article-contents-box {
    margin-top: 20px;
  }
}
body.category-page article .category-article .article-contents-box .article-content,
body.collaborators-type article .category-article .article-contents-box .article-content {
  display: none;
}
body.category-page article .category-article .article-contents-box .article-content.active,
body.collaborators-type article .category-article .article-contents-box .article-content.active {
  display: block;
}
body.category-page article .btn,
body.collaborators-type article .btn {
  margin-top: 80px;
}
body.category-page article .btn a,
body.collaborators-type article .btn a {
  margin: 0 auto;
}
