@charset "UTF-8";

/*-------------------------------------------------------------*/
/* common */

html {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: #181D2E;
  scroll-behavior: smooth;
 	scroll-padding-top: 80px;
}

body {
  line-height: 1.5;
  height: 100%;
}

img {
  width: 100%;
}

a {
  color: #181D2E;
}

.wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

.contents-inner {
  max-width: 1040px;
  margin: auto;
}

@media screen and (max-width: 1300px) {
  .contents-inner {
    max-width: 95%;
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .wrapper {
    min-width: 100%;
  }
}

/*-------------------------------------------------------------*/
/* header */

.header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 4;
}

.header-inner {
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 40px;
  box-sizing: border-box;
}

.header-inner .header-logo {
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}

.header-inner .header-logo span {
  font-size: 16px;
  vertical-align: top;
}

.header-nav-area {
  margin-left: auto;
  margin-right: 32px;
}

.header-nav-logo {
  display: block;
  width: 220px;
  margin-left: auto;
  margin-bottom: 8px;
}

.header-nav-pc .header-nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.header-nav-pc .header-nav-item a.link {
  font-size: 18px;
  padding: 10px 0;
  transition: 0s;
position: relative;
}
.header-nav-pc .header-nav-item a.link:hover:after {
	transform: translateX(-50%) scaleX(1);
}
.header-nav-pc .header-nav-item a.link:after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 2px;
  background-color: #171EC9;
  transform-origin: center;
  transition: transform 0.3s ease;
}



.header-nav-pc .header-nav-item a.link:hover {
  color: #171EC9;
}

.header-nav-pc .header-nav-item a.header-contact {
  position: relative;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(270deg, #1f28f4 0%, #0f65fa 44.83%, #009dff 100%);
  border-radius: 0;
  width: 192px;
  height: 80px;
  padding-right: 37px;
  transition: filter 0.3s ease, color 0.3s ease;
  overflow: hidden;
}

.header-nav-pc .header-nav-item a.header-contact::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 37px;
  transform: translateY(-50%);
  background: url(/assets/images/common/icon-email.svg) center/cover no-repeat;
  width: 18px;
  height: 14px;
}

.header-nav-pc .header-nav-item a.header-contact:hover {
  filter: brightness(1.15);
}

.header-nav-pc .header-nav-item a.header-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: all 0.5s;
}

.header-nav-pc .header-nav-item a.header-contact:hover::before {
  left: 125%; transition: all 0.75s;
}

@media screen and (max-width: 767px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 4;
  }

  .header-inner {
    padding: 29px 18px 29px;
  }

  .header-inner .header-logo {
    font-size: 22px;
  }

  .header-inner .header-logo span {
    font-size: 14px;
  }

  .header-nav-area {
    margin-right: 33px;
  }

  .header-nav-logo {
    line-height: 1;
    width: 130px;
    margin-top: -5px;
    margin-bottom: 0;
  }
}

/*-------------------------------------------------------------*/
/* hamburger */

.header-menu {
  position: fixed;
  right: 0;
  top: 0;
  z-index:99999;
  width: 50px;
  height: 80px;
  cursor: pointer;
  padding-top: 35px;
  transition-duration: .5s;
}

.header-menu-trigger,
.header-menu-trigger span {
  display: inline-block;
  transition: all 0.4s !important;
  box-sizing: border-box;
}

.header-menu-trigger {
  position: relative;
  width: 20px;
  height: 12px;
  display: block;
  margin-left: 13px;
}

.header-menu-trigger span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #181D2E;
}

.header-menu-trigger span:nth-of-type(1) {
  top: 0px;
}

.header-menu-trigger span:nth-of-type(2) {
  bottom: 0;
  width: 20px;
}

.header-menu-trigger.active span {
  background-color: white;
}

.header-menu-trigger.active span:nth-of-type(1) {
  transform: rotate(-45deg);
  background-color: white;
  top: 6px;
}

.header-menu-trigger.active span:nth-of-type(2) {
  transform: rotate(45deg);
  background-color: white;
  bottom: 4px;
}

/*-------------------------------------------------------------*/
/* drawer */

.sp-menu {
  display: none;
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  background: white;
  z-index: 100;
  overflow-y: scroll;
}

.sp-menu .header-logo {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  background: #171EC9;
  border-bottom: solid 1px white;
  width: 100%;
  padding: 26px 18px 28px;
}

.sp-menu .header-logo a {
  display: block;
  color: white;
}

.sp-menu .header-logo span {
  font-size: 14px;
  vertical-align: top;
}

.header-nav-sp {
  background: #171EC9;
}

.header-nav-sp .header-nav-list {
  width: 95%;
  padding: 104px 0 40px;
  margin: 0 auto;
}

.header-nav-sp .header-nav-item + .header-nav-item {
  margin-top: 40px;
}

.header-nav-sp .header-nav-item a {
  display: block;
  font-size: 18px;
  background: white;
  border-radius: 26px;
  text-align: center;
  padding: 12px 16px;
}

.header-nav-sp .header-nav-item a.current {
  background: #EFEFEF;
}

.header-nav-sp .header-nav-contact {
  width: 95%;
  padding-bottom: 90px;
  margin: 0 auto;
}

.header-nav-sp .header-nav-item a.header-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: white;
  border: solid 1px white;
  background: #171EC9;
}

.header-nav-sp .header-nav-item a.header-contact:after {
  content: "";
  background: url(/assets/images/common/icon-email.svg) center / cover no-repeat;
  width: 18px;
  height: 14px;
  margin-top: -2px;
}

.sp-menu .header-nav-bottom .header-nav-logo {
  width: 230px;
  margin: 55px auto 40px;
}

.sp-menu .header-nav-bottom-list {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.sp-menu .header-nav-bottom-item:not(:last-child) {
  border-right: solid 1px #181D2E;
  padding-right: 16px;
  margin-right: 16px;
}

.sp-menu .header-nav-bottom-item a {
  font-weight: 500;
  font-size: 14px;
  color: #181D2E;
}

.sp-menu .header-copyright {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  color: #181D2E;
}

/*-------------------------------------------------------------*/
/* footer */

.footer {
  border-top: solid 1px #DBDBDB;
}

.footer-inner {
  max-width: 1150px;
  margin: auto;
}

.footer-link-content {
  display: flex;
  gap: 80px;
  padding: 40px 0;
}

.footer-link-content-banner {
  width: 150px;
}

.footer-nav-item + .footer-nav-item {
  margin-top: 14px;
}

.footer-nav-item > a{
  font-weight: 500;
  color: #181d2e;
}

.footer-nav-item > a:hover{
  opacity:0.5;
}

.footer-copirigyt-box {
  background: #171EC9;
  padding: 18px 0 18px;
}

.footer-copyright {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: white;
  text-align: right;
}

@media screen and (max-width: 1200px) {
  .footer-inner {
    padding: 0 18px;
  }
}

@media screen and (max-width: 767px) {
  .footer-link-content {
    display: block;
  }

  .footer-link-content-banner {
    display: block;
    width: 114px;
    margin-bottom: 40px;
  }

  .footer-nav-item + .footer-nav-item {
    margin-top: 12px;
  }

  .footer-nav-item > a {
    font-size: 15px;
  }

  .footer-copirigyt-box {
    padding: 8px 0 7px;
  }

  .footer-copyright {
    font-size: 10px;
    text-align: center;
  }
}

/*-------------------------------------------------------------*/
/* main */

.main {
  background: #F5F8FA;
}

/*-------------------------------------------------------------*/
/* link-content */

.link-content {
  padding: 44px 0;
  background: #f5f8fa;
}

.link-content.bg-white {
  background: white;
}

.link-content-banner {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: auto;
}

.link-content.bg-white .link-content-banner {
  max-width: 317px;
}

@media screen and (max-width: 767px) {
  .link-content-banner {
    max-width: 300px;
  }
}

/*-------------------------------------------------------------*/
/* home */

.home-contents-inner {
  max-width: 1160px;
  margin: auto;
}

.home-title {
  position: relative;
  font-weight: 700;
  font-size: 42px;
  color: #181E2E;
  padding-left: 28px;
	line-height:1;
}
.home-title span {
  font-size: 16px;
  vertical-align: top;
}

.home-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 3px;
  background: #4354DA;
}

.home-about {
  position: relative;
  padding-top: 70px;
  padding-bottom: 120px;
  margin-top: 0;
  z-index: 2;
  background: white;
}

.home-about::before {
  content: "";
  position: absolute;
  top: -135px;
  left: 0;
  width: 100%;
  height: 137px;
  /* background: linear-gradient(rgba(0,0,0,0),rgba(239,239,239,1)); */
  background: linear-gradient(rgba(239,239,239,0),rgba(255,255,255,1));
}

.home-about-area {
  max-width: 1040px;
  margin: 60px auto 0;
}

.home-about-img {
  display: block;
  margin-bottom: 40px;
}

.home-about-text {
  font-weight: 500;
}
.home-about-text .tm{
	font-size:10px;
	vertical-align:top;
}
.home-about-text > a {
  color: #4354DA;
  text-decoration: underline;
}

.home-news {
  padding-bottom: 140px;
  background: white;
}

.home-news-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 42px;
  padding-right: 60px;
}

.home-news-inner {
  flex: 1;
  margin: 0;
}

.home-news-list {
  list-style: none;
  border-top: solid 1px #BABABA;
}

.home-news-list li {
  border-bottom: solid 1px #BABABA;
  padding: 20px 0;
}

.home-news-date {
  display: block;
  color: #4354da;
  margin-bottom: 9px;
}

.home-news-text {
  display: block;
  position: relative;
  font-weight: 500;
  color: #181d2e;
  padding-right: 40px;
  transition: .3s;
}

.home-news-text:hover {
  opacity: .8;
}

.home-news-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(/assets/images/common/icon-arrow-b.svg) center/cover no-repeat;
  width: 15px;
  height: 10px;
}
.home-news-btn-wrap{
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 40px;
}
.home-news-btn-wrap:hover{

	padding-bottom:4px;
}
.home-news-btn {
  position: relative;
  display: block;
  font-weight: 700;
  color: #fff;
  text-align: center;
  max-width: 240px;
  width: 100%;

  border-radius: 25px;
  background: linear-gradient(270deg, #1f28f4 0%, #0f65fa 44.83%, #009dff 100%);
  padding: 14px 0;
  transition: filter 0.3s ease, color 0.3s ease;
  overflow: hidden;
}

.home-news-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  background: url(/assets/images/common/icon-arrow-h.svg) center/cover no-repeat;
  width: 15px;
  height: 10px;
}

.home-news-btn:hover {
  filter: brightness(1.15);

}

.home-news-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: all 0.5s;
}

.home-news-btn:hover::before { left: 125%; transition: all 0.75s; }

@media screen and (max-width: 767px) {
	.home-news-btn-wrap{
	  width: 100%;
	  max-width: 100%;
	}
}


@media screen and (max-width: 1160px) {
  .home-contents-inner {
    padding: 0 20px;
  }

  .home-news-wrapper {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .home-about {
    padding-top: 80px;
    padding-bottom: 76px;
    margin-top: -90px;
  }

  .home-about::before {
    /* height: 90px; */
    top: -115px;
  }

  .home-contents-inner {
    padding: 0 18px;
  }

  .home-title {
    font-size: 32px;
  }

  .home-about-area {
    margin: 40px auto 0;
  }

  .home-about-scroll {
    /* overflow-x: scroll; */
    margin-bottom: 40px;
  }

  .home-about-img {
    /* width: 1040px; */
    margin-bottom: 0;
  }

  .home-about-text {
    font-size: 15px;
		line-height:1.8;
  }

  .scroll-hint-text {
    display: none;
  }

  .scroll-hint-icon {
    width: 180px;
    height: 180px;
    left: calc(50% - 90px);
  }

  .scroll-hint-icon::before {
    border-radius: 8px;
    background: url(/assets/images/home/scroll-hint-icon-img.svg) center/cover no-repeat;
    width: 120px;
    height: 120px;
    margin-top: 10px;
  }

  .scroll-hint-icon::after {
    content: none;
  }

  .home-news {
    padding-bottom: 80px;
  }

  .home-news-wrapper {
    display: block;
  }

  .home-news-list {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .home-news-text {
    font-size: 15px;
    padding-right: 35px;
  }

  .home-news-btn {
    margin: auto;
  }
}

/*-------------------------------------------------------------*/
/* lower */

.lower-content {
  padding: 80px 0 120px;
}

.lower-title {
  position: relative;
  font-size: 42px;
  font-weight: 700;
  color: #181E2E;
  padding-left: 28px;
  margin-bottom: 9px;
}

.lower-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 3px;
  background: #4354DA;
}

.lower-lead {
  font-weight: 500;
}

.btn-back {
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #171ec9;
  max-width: 240px;
  height: 50px;
  border-radius: 25px;
  background: #fff;
  border: 2px solid #171ec9;
  margin: auto;
  transition: .3s;
}

.btn-back:hover {
  color: white;
  background: #171EC9;
}

.btn-box {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .lower-content {
    padding: 60px 0 80px;
  }
}

/*-------------------------------------------------------------*/
/* pager */

.wp-pagenavi {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .pages {
  display: none;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #4354DA;
  width: 48px;
  height: 56px;
  border: none;
  padding: 0;
  margin: 0;
}

.wp-pagenavi a {
  color: #4354DA;
  border: solid 1px #4354DA;
  transition: .3s;
}

.wp-pagenavi a:hover,
.wp-pagenavi .current {
  background: #4354DA;
  color: #F5F8FA;
}

.wp-pagenavi a:hover {
  border: solid 1px #4354DA;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    gap: 18px;
  }

  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 18px;
    width: 37px;
    height: 43px;
  }
}

/*-------------------------------------------------------------*/
/* download */

.download-list {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  margin-top: 80px;
  margin-bottom: 60px;
}

.download-item {
  display: flex;
  flex-direction: column;
  width: calc((100% - (64px * 3)) / 4);
}

.download-item-img img {
  border-radius: 4px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
}

.download-item-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin: 12px 0 8px;
}

.download-item-text {
  color: #6d707b;
  margin-bottom: 12px;
}

.download-item-btn {
  position: relative;
  display: block;
  font-weight: 700;
  color: white;
  background: linear-gradient(270deg, #1f28f4 0%, #0f65fa 44.83%, #009dff 100%);
  border-radius: 4px;
  padding: 12px 27px;
  transition: filter 0.3s ease, color 0.3s ease;
  margin-top: auto;
  overflow: hidden;
}

.download-item-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
  background: url(/assets/images/download/icon-save.svg) center/cover no-repeat;
  width: 17px;
  height: 17px;
  transition: .3s;
}

.download-item-btn:hover {
  filter: brightness(1.15);
}

.download-item-btn:hover:after {
  transform: translateY(-40%);
}

.download-item-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: all 0.5s;
}

.download-item-btn:hover::before { left: 125%; transition: all 0.75s; }

@media screen and (max-width: 767px) {
  .download-list {
    display: block;
    margin-bottom: 40px;
  }

  .download-item {
    width: 100%;
  }

  .download-item + .download-item {
    margin-top: 60px;
  }

  .download-item-inner {
    display: flex;
    margin-bottom: 18px;
    gap: 24px;
  }

  .download-item-img {
    width: 138px;
  }

  .download-item-main {
    flex: 1;
  }

  .download-item-title {
    font-size: 16px;
    text-align: left;
    margin: 0 0 8px;
  }

  .download-item-text {
    font-size: 14px;
    margin-bottom: 0;
  }

  .download-item-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .download-item-btn::after {
    position: static;
    transform: translateY(0);
  }
}

/*-------------------------------------------------------------*/
/* contact */
.form-area select,
.form-area option{
	color:#181D2E;
}
.form-area .wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7 form .wpcf7-response-output {
  padding: 10px;
}

.wpcf7-not-valid-tip {
  font-weight: 500;
  font-size: 12px;
  color: #F00E0E;
  margin-top: 12px;
}

.wpcf7-list-item-label {
  flex: 1;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border: 1px solid #261fc9;

    transition: 0.3s;
}
.form-area {
  max-width: 900px;
  border-radius: 8px;
  background: #fff;
  margin: 64px auto 0;
  padding: 40px 50px;
}

.form-title-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.form-title {
  font-weight: 500;
  font-size: 15px;
}

.form-required {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
  background: #261fc9;
  padding: 3px 8px;
}

.form-box + .form-title-box {
  margin-top: 24px;
}

.form-box.form-col p {
  display: flex;
  align-items: center;
}

.form-selectbox {
  position: relative;
  border-radius: 4px;
  background: #f3f3f3;
  border: 1px solid #b2b2b2;
  max-width: 595px;
}

.form-selectbox::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 20px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #181D2E;
  border-bottom: 2px solid #181D2E;
  transform: rotate(45deg);
}

.form-selectbox select {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  width: 100%;
  padding: 13px 16px;
}

.form-textarea,
.form-input {
  font-size: 16px;
  border-radius: 4px;
  background: #f3f3f3;
  border: 1px solid #b2b2b2;
  width: 100%;
  padding: 13px 16px;
}

.form-size-160 {
  max-width: 160px;
}

.form-size-300 {
  max-width: 300px;
}

.form-textarea {
  height: 120px;
}

.form-checkbox-box label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
}

.form-checkbox {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #b2b2b2;
  border-radius: 4px;
  background: #f3f3f3;
  cursor: pointer;
}

.form-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #261FC9;
  border-left: 2px solid #261FC9;
  transform: rotate(-45deg);
}

.form-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 24px;
}

.form-text > a {
  color: #4354DA;
  text-decoration: underline;
}

.form-captcha {
  margin: 24px 0 40px;
}

.form-captcha img {
  max-width: 100%;
  width: auto;
}

.form-btn {
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  max-width: 240px;
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(270deg, #1f28f4 0%, #0f65fa 44.83%, #009dff 100%);
  margin: auto;
  transition: filter 0.3s ease, color 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.form-btn:hover {
  filter: brightness(1.15);
}

.form-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: all 0.5s;
}

.form-btn:hover::before { left: 125%; transition: all 0.75s; }

.form-btn:disabled{
	opacity:0.3;
}

.form-complete-title {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
}

.form-complete-text {
  font-weight: 500;
  text-align: center;
  margin: 24px 0 40px;
}

@media screen and (max-width: 767px) {
  .form-area {
    margin: 40px auto 0;
    padding: 40px 20px;
  }

  .form-complete-text {
    margin: 24px 0;
  }
}

/*-------------------------------------------------------------*/
/* privacy */

.privacy-area {
  max-width: 900px;
  border-radius: 8px;
  background: #fff;
  margin: 64px auto 0;
  padding: 40px 50px;
}

.privacy-title-lv1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.privacy-title-lv2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}

.privacy-title-lv3 {
  font-size: 24px;
  font-weight: 500;
  border-bottom: solid 1px #999;
  margin-bottom: 15px;
}

.privacy-text {
  line-height: 1.8;
}

.trade-mark {
  font-size: 10px;
  vertical-align: top;
}

.privacy-note {
  font-size: 14px;
  text-indent: -1.0em;
  margin: 1em 0 1em 1em;
}

.privacy-list-dot,
.privacy-list {
  margin-left: 1em;
}

.privacy-list-dot li + li,
.privacy-list li + li {
  margin-top: 10px;
}

.privacy-list-dot li {
  list-style-type: disc;
}

.privacy-list-num {
  margin-left: 1em;
}

.privacy-list-num li {
  list-style: decimal;
}

.privacy-list-num li + li {
  margin-top: 30px;
}

.lower-title + .privacy-title-lv2,
.lower-lead + .privacy-title-lv2 {
  margin-top: 80px;
}

.privacy-text + .privacy-title-lv2,
.privacy-text + .privacy-title-lv3,
.privacy-list + .privacy-title-lv2,
.privacy-list-dot + .privacy-title-lv2,
.privacy-list-dot + .privacy-title-lv3,
.privacy-list-num + .privacy-title-lv2 {
  margin-top: 60px;
}

.privacy-text + .privacy-text {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .privacy-area {
    margin: 40px auto 0;
    padding: 40px 20px;
  }

  .privacy-title-lv1 {
    font-size: 24px;
  }

  .privacy-title-lv2 {
    font-size: 22px;
  }

  .privacy-title-lv3 {
    font-size: 20px;
  }
}

/*-------------------------------------------------------------*/
/* terms */

.terms-list {
  list-style: none;
}

.terms-list li + li {
  margin-top: 10px;
}

.terms-list > li {
  position: relative;
  padding-left: 1em;
}

.terms-list > li::before {
  content: "";
  background: #666;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  top: 6px;
  left: 0;
}

.terms-list-num {
  margin-left: 1em;
}

.terms-list-num li {
  list-style: decimal;
}

.terms-list-num li + li {
  margin-top: 30px;
}

.terms-list-num + .privacy-text,
.privacy-text + .terms-list-num,
.privacy-text + .terms-list {
  margin-top: 30px;
}

.terms-list + .privacy-title-lv3 {
  margin-top: 60px;
}

/*-------------------------------------------------------------*/
/* news */

.news-list {
  list-style: none;
  border-top: solid 1px #BABABA;
  margin-top: 80px;
  margin-bottom: 60px;
}

.news-list li {
  border-bottom: solid 1px #BABABA;
  padding: 20px 0;
}

.news-date {
  display: block;
  color: #4354da;
  margin-bottom: 9px;
}

.news-text {
  display: block;
  position: relative;
  font-weight: 500;
  color: #181d2e;
  padding-right: 40px;
}

.news-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(/assets/images/common/icon-arrow-b.svg) center / cover no-repeat;
  width: 15px;
  height: 10px;
}

.news-area {
  margin-top: 80px;
}

.news-area-title {
  font-size: 30px;
  font-weight: 700;
}

.news-area-date {
  display: block;
  color: #4354da;
  margin: 10px 0;
}

@media screen and (max-width: 767px) {
  .news-text {
    font-size: 15px;
    padding-right: 35px;
  }

  .news-area-title {
    font-size: 24px;
  }

  .news-area-date {
    font-size: 14px;
    margin: 5px 0;
  }
}

