@charset "UTF-8";

html {
  font-size: 10px;
  scroll-behavior: smooth;
}


/**************************************************
  Base
**************************************************/
body {
  /* font-family: Arial, Helvetica,"Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro W3","Meiryo",sans-serif; */
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
  line-height: 1.5;
  font-size: 16px;
  position: relative;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 769px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}


.bg-animation {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(30deg, #dee6e3, #e5e4dc, #dce6e5, #e6dbe3);
  background-size: 200% 200%;
  animation: bggradient 1s ease infinite alternate;
}

@keyframes bggradient {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 100% 0;
  }
}


a:hover {
  transition: all 0.3s;
  opacity: 0.8;
}


/* Micro clearfix */

/* For modern browsers */
.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.cf {
  zoom: 1;
}



/**************************************************
  Header
**************************************************/
.main-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 66px;
  transition: all 0.5s;
  position: absolute;
  z-index: 1000;
}

.main-header.is-fixed {
  position: fixed;
  opacity: 1;
  z-index: 1000;
  top: 0;
}

@media screen and (min-width: 1420px) {
  .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.main-header__logo {
  width: 86px;
  margin-left: 15px;
  display: inline-block;
  display: flex;
  align-items: center;
  display: none;
}

.main-header__logo img {
  /* width: 100%;
  height: auto; */
  width: auto;
  height: 30px;
  margin: 0px 0 0 0;
}

.main-header__logo h1 {
  font-size: 1.0rem;
  color: rgba(0, 87, 161);
}

@media screen and (max-width: 769px) {
  .main-header__logo {
    width: auto;
    margin: 23px 0 0 6.94%;
  }

  .main-header__logo img {
    width: auto;
  }

  .main-header__logo h1 {
    font-size: 0.8rem;
    width: 100%;
    margin: 0.5rem 0 0 0;
  }

}

@media screen and (min-width: 1240px) {
  .main-header__logo {
    width: inherit;
    margin: 0 0 0 22px;

  }
}

/**************************************************
  Navigation
**************************************************/
.main-navi {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1419px) {
  .main-navi {
    position: relative;
  }
}

.menu-content__main-menu li {
  padding: 0 7px;
}

.menu-content__main-menu li a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
}

.menu-content__main-menu li a .menu-icon {
  position: relative;
}

.menu-content__main-menu li a .menu-icon span {
  position: absolute;
  top: -5px;
  left: -19px;
  z-index: 2;
  width: 23px;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #f78da7 0%, #ffa594 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  padding-inline-end: 1px;
}

.menu-content__main-menu li a .menu-icon span ::after {
  content: "+";
  position: absolute;
  top: -8px;
  left: -4px;
  z-index: 3;
  color: #fff;
}

.menu-content__main-menu--pc-menu {
  display: none;
}

@media screen and (min-width: 769px) {


  .main-header.is-fixed .menu-content__main-menu--pc-menu {
    padding: 0;
    margin: 0;
    margin-right: 11.8vw;
    display: flex;
    height: 100%;
  }

  .main-header.is-fixed .menu-content__main-menu--pc-menu a {
    flex-direction: column;
  }
}

.hamburger-menu {
  display: flex;
  align-items: center;
  height: 100%;
}

@media screen and (max-width: 1419px) {
  .hamburger-menu {
    position: absolute;
    top: 0;
    right: 0;
  }
}

.menu-btn {
  display: flex;
  width: 70px;
  height: 54px;
  justify-content: center;
  align-items: center;
  z-index: 80;
  cursor: pointer;
  position: fixed;
  right: 6.94%;
  transition: all 0.5s;
}

.menu-btn::after {
  content: "";
  display: block;
  width: 0;
  height: 100vh;
  position: fixed;
  left: 100%;
  top: 0;
  z-index: 80;
  background-color: rgba(51, 51, 51, .85);
  transition: all 0.5s;
}

.menu-btn div {
  position: relative;
  z-index: 81;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: flex;
  justify-content: flex-end;
  height: 2.2px;
  width: 24px;
  background-color: #323232;
  position: absolute;
  transition: all 0.3s;
}

.menu-btn span:before {
  bottom: 8px;
  width: 28px;
}

.menu-btn span:after {
  top: 8px;
  width: 18px;
}

#menu-btn-check:checked~.menu-btn {
  right: 33.3333%;
}

@media screen and (max-width: 1419px) {
  #menu-btn-check:checked~.menu-btn {
    right: 33%;
  }
}

#menu-btn-check:checked~.menu-btn::after {
  width: 100vw;
  left: 0;
}

#menu-btn-check:checked~.menu-btn span {
  background-color: rgba(0, 0, 0, 0);
}

#menu-btn-check:checked~.menu-btn span::before {
  bottom: 0;
  width: 24px;
  transform: rotate(45deg);
  background-color: #fff;
}

#menu-btn-check:checked~.menu-btn span::after {
  top: 0;
  width: 24px;
  transform: rotate(-45deg);
  background-color: #fff;
}

#menu-btn-check {
  display: none;
}

/* menu */
.menu-content {
  width: 33.3333%;
  height: 100%;
  position: fixed;
  top: 0;
  right: -33.3333%;
  z-index: 81;
  transition: all 0.5s;
  overflow-y: auto;
  background: linear-gradient(230deg, #dee6e3, #e5e4dc, #dce6e5, #e6dbe3);
  background-size: 300% 300%;
  -webkit-animation: bg_animation 15s ease infinite;
  -moz-animation: bg_animation 15s ease infinite;
  animation: bg_animation 15s ease infinite;
}

@media screen and (max-width: 1419px) {
  .menu-content {
    width: 33%;
    right: -50%;
  }
}



.menu-content .navi-logo {
  display: none;
}

.menu-content__wrapper {
  display: none;
}

.menu-content ul {
  padding: 30px 0 0;
}

.menu-content ul li {
  list-style: none;
}

.menu-content ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.6rem;
  box-sizing: border-box;
  color: #333333;
  text-decoration: none;
  position: relative;
  margin: 20px 10px 0;
  font-weight: 500;
}

.menu-content ul li .menu-icon {
  margin: 0 20px 0 0;
}

.menu-content ul li .module-button {
  display: inline-flex;
  height: 5.0rem;
  justify-content: center;
  max-width: 100%;
}

.menu-content ul li .arr_right::after {
  content: "";
  background-image: url(../../images/advance_one.png);
  background-size: 5px 8px;
  width: 5px;
  height: 8px;
  background-repeat: no-repeat;
  position: absolute;
  right: 5%;
}

.menu-content ul li .arr_down::after {
  content: "";
  background-image: url(../../images/advance_one.png);
  background-size: 5px 8px;
  transform: rotate(90deg);
  width: 5px;
  height: 8px;
  background-repeat: no-repeat;
  position: absolute;
  right: 5%;
}

.menu-content ul li label {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.6rem;
  box-sizing: border-box;
  color: #333333;
  text-decoration: none;
  position: relative;
  margin: 20px 10px 0;
  font-weight: 500;
}

.menu-content ul .top_line::before {
  content: "";
  background-color: #333;
  width: 96%;
  display: block;
  height: 1px;
  margin: 2.0rem 1.0rem;
}

/* チェックボックスを非表示にする */

.accordion-toggle {
  display: none !important;
}

/* 初期状態では非表示 */
.submenu {
  display: none;
  padding-left: 15px;
}

/* チェックが入ると表示 */
.accordion-toggle:checked+.arr_down+.submenu {
  display: block;
}

/* 開いたときの矢印を変更 */
.accordion-toggle:checked+.arr_down::after {
  transform: rotate(270deg);
  /* 矢印を下向きに変更 */
}

.menu-content ul.submenu {
  padding: 0px 20px 0;
}

@media screen and (max-width: 768px) {
  .menu-content {
    width: 90vw;
    right: -90vw;
  }

  #menu-btn-check:checked~.menu-btn {
    right: 89%;
  }

  .menu-content ul {
    padding: 30px 0px 0;
  }

  #menu-btn-check:checked~.menu-content .navi-logo {
    left: 0;
  }
}

@media screen and (min-width: 1420px) {
  .menu-content ul li a {
    margin: 20px 10px 0;
  }
}


/* btn checked */
#menu-btn-check:checked~.menu-content {
  right: 0;
  padding: 2rem;
}

#menu-btn-check:checked~.menu-content .navi-logo {
  display: block;
  position: absolute;
  right: 0;
}

#menu-btn-check:checked~.menu-content .menu-content__wrapper {
  display: block;
}

#menu-btn-check:checked~.hamburger-menu::after {
  width: 100vw;
}



/* menu fixed */
.main-header.is-fixed {
  background-color: rgba(255, 255, 255, 0.75);
}

.main-header.is-fixed .main-header__logo {
  display: block;
}

.main-header.is-fixed .menu-content__wrapper {
  display: flex;
}

@media screen and (max-width: 1420px) {
  .main-header.is-fixed .main-header__logo {
    display: inline-block;
    margin: 0 0 0 6.94%;
    align-items: center;
    width: inherit;
    padding: 1rem 0 0;
  }
}

@media screen and (max-width: 769px) {
  .main-header.is-fixed .main-header__logo {
    height: auto;
  }

  .main-header.is-fixed .main-header__logo img {
    height: 28px;
    width: auto;
  }
}


/**************************************************
  main-content
**************************************************/
.main-content {
  position: relative;
  z-index: 1;
}

/**************************************************
  Footer
**************************************************/
.main-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  transition: all 0.5s;
  margin-top: 100px;
}

.main-footer-top {
  padding: 94px 0 114px;
  background-color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 1240px) {
  .main-footer-top {
    padding: 4% 0;
  }
}


.footer-navi {
  display: flex;
}

@media screen and (max-width: 768px) {
  .main-footer {
    margin-top: 50px;
  }

  .footer-navi {
    display: block;
    padding: 0 0 2rem;
  }
}

.footer-navi-block {
  width: 33.3333%;
  margin-top: 34px;
  padding-inline-end: 30px;
}

.footer-navi-block:last-child {
  padding-inline-end: 0;
}

@media screen and (max-width: 1240px) {
  .footer-navi-block {
    width: 100%;
    padding-inline-end: 0 !important;
  }

  /* .footer-navi-block:first-child {
    margin-top: 0;
  } */
}

@media screen and (max-width: 768px) {
  .footer-navi-block {
    margin-top: 2.5rem;

  }
}



.footer-navi-block__title {
  font-size: 17px;
}

@media screen and (max-width: 768px) {
  .footer-navi-block__title {
    font-size: 1.4rem;
  }
}


.footer-navi-block__content {
  font-size: 15px;
}

.footer-navi-block ul li {
  margin-top: 1.4em;
}

@media screen and (max-width: 1240px) {
  .footer-navi-block ul li {
    margin-top: 0.6em;
  }
}

@media screen and (max-width: 768px) {
  .footer-navi-block ul li {
    margin-top: 0.2em;
  }
}



.footer-navi-block ul li a {}

@media screen and (max-width: 768px) {
  .footer-navi-block ul li a {
    font-size: 1.2rem;
  }
}



/* option */
.footer-navi-block--corporate {
  margin-top: 0;
}

.footer-navi-block--corporate .footer-navi-block__logo {
  margin-bottom: 36px;
}

.footer-navi-block--corporate .footer-navi-block__title {
  margin-top: 20px;
}

@media screen and (max-width: 1240px) {
  .footer-navi-block--corporate {
    margin-top: 30px;
  }

  .footer-navi-block--corporate .footer-navi-block__logo {
    margin-bottom: 0;
  }

  .footer-navi-block--corporate .footer-navi-block__content {
    margin-left: 1em;
  }
}

@media screen and (max-width: 768px) {
  .footer-navi-block--corporate .footer-navi-block__logo {
    width: 15rem;
    ;
  }

  .footer-navi-block--corporate .footer-navi-block__logo+.footer-navi-block__title {
    margin-top: 1rem;
    font-size: 1.6rem;
  }

  .footer-navi-block--corporate .footer-navi-block__content {
    font-size: 1.2rem;
  }
}


.main-footer-bottom {
  height: 60px;
  color: #ffffff;
  text-align: center;
  background-color: #333333;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1240px) {
  .main-footer-bottom {
    height: auto;
    padding: 30px 0;
  }
}

.main-footer-bottom .content-wrapper .module-content-block {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 1240px) {
  .main-footer-bottom .content-wrapper .module-content-block {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .main-footer-bottom .content-wrapper .module-content-block {
    font-size: 1.2rem;
  }
}


.main-footer-bottom__link-list {
  display: flex;
  justify-content: flex-start;
  margin-left: 76px;
}

@media screen and (max-width: 1240px) {
  .main-footer-bottom__link-list {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }
}

.main-footer-bottom__link-list a {
  font-size: 14px;
  margin-right: 42px;
}

@media screen and (max-width: 1240px) {
  .main-footer-bottom__link-list a {
    margin-right: 0;
  }

  .main-footer-bottom__link-list a+a {
    margin-top: 0.6em;
  }
}

@media screen and (max-width: 768px) {
  .main-footer-bottom__link-list a {
    font-size: 1.2rem;
  }
}



.main-footer-bottom__link-list a:last-child {
  margin-right: 0;
}

.main-footer-bottom small {
  margin-right: 50px;
}

@media screen and (max-width: 1240px) {
  .main-footer-bottom small {
    margin: 0.6em 0 0 0;
    display: block;
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .main-footer-bottom small {
    margin: 1.0em 0 0 0;
  }
}

.fotter_tag_wrap {
  margin-bottom: 3rem;
}

.fotter_tag {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.fotter_tag li {
  font-size: 1.2rem;
  border-bottom: 1px #787878 solid;
  color: #787878;
  margin-right: 1.0rem;
}

@media screen and (max-width: 768px) {
  .fotter_tag_wrap {
    margin-bottom: 3rem;
    width: 86% !important;
  }
}