@charset "UTF-8";
/* color */
/* breakpoint */
/* reset */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::before, ::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

html, body {
  font-size: 62.5%;
  font-family: 'Jost', sans-serif;
}

h1 {
  margin-top: .8rem;
  font-size: 3.2rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.4rem;
    font-weight: 700;
  }
}

h2 {
  font-weight: bold;
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  h2 {
    font-size: 1.8rem;
    font-weight: normal;
  }
}

p {
  font-size: 1.6rem;
}

@media (max-width: 767px) {
  p {
    font-size: 1.4rem;
  }
}

/* ロード画面 */
/* inner*/
.inner {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  height: 100%;
}

@media (max-width: 1100px) {
  .inner {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .inner {
    width: 90%;
  }
}

/* アニメーション */
@-webkit-keyframes rotation1 {
  0% {
    top: 5vw;
  }
  50% {
    top: 6vw;
  }
  100% {
    top: 5vw;
  }
}
@keyframes rotation1 {
  0% {
    top: 5vw;
  }
  50% {
    top: 6vw;
  }
  100% {
    top: 5vw;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.content_box {
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.content_box.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* タイトルテキストの設定*/
.title {
  font-size: 2.5vw;
}

@media (max-width: 767px) {
  .title {
    text-align: center;
    font-size: 4.5vw;
    letter-spacing: 1.2vw;
  }
}

/* header */
.top {
  width: 100%;
  height: 55vw;
  position: relative;
}

@media (max-width: 767px) {
  .top {
    height: 54.8rem;
  }
}

.top .top_image {
  width: 100%;
  height: 100%;
  position: relative;
}

@media (max-width: 767px) {
  .top .top_image {
    display: none;
  }
}

.top .top_image .top_slide_image {
  width: 100%;
  height: 55vw;
  background: url("../image/top1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 0 bottom 30%;
}

.top .sp_top_image {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
}

@media (max-width: 767px) {
  .top .sp_top_image {
    display: block;
  }
}

.top .sp_top_image .sp_top_slide_image {
  width: 100%;
  height: 54.8rem;
  background: url("../image/top1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 80% bottom 20%;
}

.top .inner {
  width: 90%;
  /* height: 100%; */
    height: auto;
}

.top .inner .top_left {
  position: absolute;
  top: 15%;
  left: 5%;
  color: white;
  line-height: 8rem;
}

@media (max-width: 1100px) {
  .top .inner .top_left {
    line-height: 5rem;
  }
}

@media (max-width: 767px) {
  .top .inner .top_left {
    line-height: 3.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
    top: 20%;
    left: 5%;
  }
}

.top .inner .top_left h1 {
  font-size: 7rem;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .top .inner .top_left h1 {
    font-size: 5rem;
  }
}

@media (max-width: 767px) {
  .top .inner .top_left h1 {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 3.6rem;
    margin: 0;
  }
}

.top .inner .top_left h2 {
  font-size: 6rem;
  font-family: 'Noto Serif JP', serif;
}

@media (max-width: 1100px) {
  .top .inner .top_left h2 {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .top .inner .top_left h2 {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 2.4rem;
    line-height: 2.7rem;
  }
}

.top .inner .top_right {
  position: absolute;
  bottom: 20%;
  right: 40%;
  color: white;
}

@media (max-width: 767px) {
  .top .inner .top_right {
    right: 55%;
    bottom: 20%;
  }
}

.top .inner .top_right .name_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.top .inner .top_right .name_top h1 {
  font-size: 20rem;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .top .inner .top_right .name_top h1 {
    font-size: 15rem;
  }
}

@media (max-width: 767px) {
  .top .inner .top_right .name_top h1 {
    font-size: 8rem;
  }
}

.top .inner .top_right .name_top h3 {
  font-size: 2.8rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

@media (max-width: 1100px) {
  .top .inner .top_right .name_top h3 {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .top .inner .top_right .name_top h3 {
    font-size: 1.4rem;
  }
}

.top .inner .top_right .name_bottom {
  text-align: center;
  margin-top: -1rem;
}

.top .inner .top_right .name_bottom h1 {
  font-size: 5.6rem;
  line-height: 1rem;
}

@media (max-width: 1100px) {
  .top .inner .top_right .name_bottom h1 {
    font-size: 4.2rem;
  }
}

@media (max-width: 767px) {
  .top .inner .top_right .name_bottom h1 {
    font-size: 1.9rem;
  }
}

/* navbar */
.hamburger {
  display: none;
}

@media (max-width: 767px) {
  .hamburger {
    display: block;
    /* ボタンの配置位置  */
    position: fixed;
    top: 1rem;
    right: 2rem;
    /*ボタンの大きさ*/
    width: 4rem;
    height: 4rem;
    /* 最前面に */
    z-index: 11;
    padding: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .hamburger .hamburger-inner {
    background-color: #EB5C01;
  }
  .hamburger .hamburger-inner::before {
    background-color: #EB5C01;
  }
  .hamburger .hamburger-inner::after {
    background-color: #EB5C01;
  }
}

.hamburger.is-active {
  right: 68vw;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.hamburger.is-active .hamburger-inner {
  background-color: white;
}

.hamburger.is-active .hamburger-inner::before {
  background-color: white;
}

.hamburger.is-active .hamburger-inner::after {
  background-color: white;
}

.nav-menu {
  width: 100%;
  height: 8rem;
  z-index: 10;
  background: #ffffff9a;
}

@media (max-width: 767px) {
  .nav-menu {
    display: none;
  }
}

.nav-menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 95%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .nav-menu .menu {
    width: 100%;
  }
}

.nav-menu .menu .menu-list-title {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
}

.nav-menu .menu .menu-list-title .menu-title {
  width: auto;
  height: 100%;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-menu .menu .menu-list-title .menu-title .logo_image {
  width: 5rem;
  height: 100%;
  position: relative;
}

.nav-menu .menu .menu-list-title .menu-title .logo_image .top_image_content {
  position: absolute;
  left: 50%;
  top: 50%;
}

.nav-menu .menu .menu-list-title .menu-title .logo_image .top_image_content img {
  width: 4.7rem;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 1100px) {
  .nav-menu .menu .menu-list-title .menu-title .logo_image .top_image_content img {
    width: 4rem;
  }
}

.nav-menu .menu .menu-list-title .menu-title .logo_right {
  width: auto;
  height: 100%;
  display: table;
}

.nav-menu .menu .menu-list-title .menu-title .logo_right div {
  display: table-cell;
  vertical-align: middle;
  line-height: 2.7rem;
}

.nav-menu .menu .menu-list-title .menu-title .logo_right div h2 {
  font-size: 1.3rem;
}

@media (max-width: 1100px) {
  .nav-menu .menu .menu-list-title .menu-title .logo_right div h2 {
    font-size: 1rem;
  }
}

.nav-menu .menu .menu-list-title .menu-title .logo_right div h1 {
  font-size: 3.2rem;
}

.nav-menu .menu .menu-list-title .menu-title .logo_right div h1 span {
  font-size: 1.6rem;
}

.nav-menu .menu .menu-list {
  width: auto;
  height: 100%;
  display: table;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1.2rem;
  padding: 1rem 0;
}

@media (max-width: 1100px) {
  .nav-menu .menu .menu-list {
    margin-left: 1rem;
  }
}

.nav-menu .menu .menu-list a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: auto;
  height: 70%;
  color: #EB5C01;
  border-bottom: 0.3rem solid rgba(255, 255, 255, 0);
  -webkit-transition: .5s;
  transition: .5s;
}

.nav-menu .menu .menu-list a:hover {
  -webkit-transition: .5s;
  transition: .5s;
  color: #EB5C01;
  border-bottom: 0.3rem solid #EB5C01;
  text-decoration: none;
}

.nav-menu .menu .menu-list a .a-box {
  width: auto;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}

.nav-menu .menu .menu-list a .a-box .a-top {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: .1rem;
}

@media (max-width: 1100px) {
  .nav-menu .menu .menu-list a .a-box .a-top {
    font-size: 1.3rem;
  }
}

.nav-menu .menu .menu-list a .a-box .a-bottom {
  font-size: 1.2rem;
  margin: 0;
  letter-spacing: .3rem;
}

@media (max-width: 1100px) {
  .nav-menu .menu .menu-list a .a-box .a-bottom {
    font-size: 1rem;
  }
}

.nav-menu .menu .menu-list .menu_sns {
  display: table-cell;
  vertical-align: middle;
}

.nav-menu .menu .menu-list .menu_sns a {
  border-bottom: none;
  opacity: 1;
}

.nav-menu .menu .menu-list .menu_sns a img {
  width: 4rem;
  height: auto;
}

@media (max-width: 1100px) {
  .nav-menu .menu .menu-list .menu_sns a img {
    width: 3rem;
  }
}

.nav-menu .menu .menu-list .menu_sns a:hover {
  border-bottom: none;
  opacity: 0.7;
}

.sp_menu_title {
  display: none;
  width: 100%;
  height: 5rem;
  background: white;
}

@media (max-width: 767px) {
  .sp_menu_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sp_menu_title .logo_image {
  width: 5rem;
  height: 100%;
  position: relative;
}

.sp_menu_title .logo_image .top_image_content {
  position: absolute;
  left: 50%;
  top: 50%;
}

.sp_menu_title .logo_image .top_image_content img {
  width: 2.9rem;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sp_menu_title .logo_right {
  width: auto;
  height: 100%;
  display: table;
  color: black;
}

.sp_menu_title .logo_right div {
  display: table-cell;
  vertical-align: middle;
  line-height: 1.3rem;
}

.sp_menu_title .logo_right div h2 {
  font-size: 1rem;
}

.sp_menu_title .logo_right div h1 {
  font-size: 2.4rem;
}

.sp_menu_title .logo_right div h1 span {
  font-size: 1.3rem;
}

.sp_nav-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100rem;
  width: 80%;
  height: 100%;
  z-index: 10;
  background: #EB5C01;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media (max-width: 767px) {
  .sp_nav-menu {
    display: block;
  }
}

.sp_nav-menu.visible {
  right: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.sp_nav-menu .menu {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 95%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  font-weight: 600;
}

.sp_nav-menu .menu .menu-list {
  width: 55%;
  height: auto;
  display: table;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1.2rem;
  padding: 1rem 0;
}

.sp_nav-menu .menu .menu-list a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: auto;
  height: 70%;
  color: white;
  border-bottom: 0.3rem solid rgba(255, 255, 255, 0);
  -webkit-transition: .5s;
  transition: .5s;
}

.sp_nav-menu .menu .menu-list a .a-box {
  width: auto;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}

.sp_nav-menu .menu .menu-list a .a-box .a-top {
  margin: 0;
  font-size: 2.4rem;
  letter-spacing: .1rem;
  text-align: left;
}

.sp_nav-menu .menu .menu-list a .a-box .a-bottom {
  font-size: 1.6rem;
  font-weight: 300;
  margin-top: .5rem;
  letter-spacing: .3rem;
  text-align: left;
  white-space: nowrap;
}

.sp_nav-menu .menu .menu-list .menu_sns {
  width: 25%;
  display: table-cell;
  vertical-align: middle;
}

.sp_nav-menu .menu .menu-list .menu_sns a {
  border-bottom: none;
  opacity: 1;
}

.sp_nav-menu .menu .menu-list .menu_sns a img {
  width: 4rem;
  height: auto;
}

.sp_nav-menu .menu .menu-list .menu_sns a:hover {
  border-bottom: none;
  opacity: 0.7;
}

.sp_nav-menu .menu.open {
  z-index: 5;
  right: 0;
}

.sub-nav-menu {
  position: fixed;
  top: -6rem;
  left: 0;
  width: 100%;
  height: 6rem;
  z-index: 10;
  -webkit-transition: all .5s;
  transition: all .5s;
  background: #ffffff9a;
}

@media (max-width: 767px) {
  .sub-nav-menu {
    display: none;
  }
}

.sub-nav-menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 95%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
}

.sub-nav-menu .menu .menu-list {
  width: auto;
  height: 100%;
  display: table;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1.2rem;
  padding: 1rem 0;
}

.sub-nav-menu .menu .menu-list a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: auto;
  height: 70%;
  color: #EB5C01;
  border-bottom: 0.3rem solid rgba(255, 255, 255, 0);
  -webkit-transition: .5s;
  transition: .5s;
}

.sub-nav-menu .menu .menu-list a:hover {
  -webkit-transition: .5s;
  transition: .5s;
  color: #EB5C01;
  border-bottom: 0.3rem solid #EB5C01;
  text-decoration: none;
}

.sub-nav-menu .menu .menu-list a .a-box {
  width: auto;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}

.sub-nav-menu .menu .menu-list a .a-box .a-top {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: .1rem;
}

.sub-nav-menu .menu .menu-list a .a-box .a-bottom {
  font-size: 1.2rem;
  margin: 0;
  letter-spacing: .3rem;
}

.sub-nav-menu .menu .menu-list .menu_sns {
  display: table-cell;
  vertical-align: middle;
}

.sub-nav-menu .menu .menu-list .menu_sns a {
  border-bottom: none;
  opacity: 1;
}

.sub-nav-menu .menu .menu-list .menu_sns a img {
  width: 4rem;
  height: auto;
}

.sub-nav-menu .menu .menu-list .menu_sns a:hover {
  border-bottom: none;
  opacity: 0.7;
}

/*MESSAGE*/
.message {
  width: 100%;
  height: auto;
  background: white;
}

@media (max-width: 767px) {
  .message {
    height: auto;
  }
}

.message .content_box {
  width: 100%;
  height: auto;
}

.message .content_box .content_top,
#top_sns.sns h1{
  width: 100%;
  height: 30%;
  text-align: center;
  padding: 7.5rem;
}

@media (max-width: 767px) {
  .message .content_box .content_top {
    padding: 5rem 0 2.4rem 0;
  }
}

.message .content_box .content_top h2 {
  color: #EB5C01;
}

.message .content_box .content_bottom {
  width: 100%;
  height: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 7rem;
}

@media (max-width: 767px) {
  .message .content_box .content_bottom {
    display: block;
  }
}

.message .content_box .content_bottom .content_image {
  width: 47%;
  height: 25vw;
  aspect-ratio: 480/300;
  background: url("../image/message.png");
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .message .content_box .content_bottom .content_image {
    width: 100%;
    height: 72vw;
    aspect-ratio: 335/270;
  }
}

.message .content_box .content_bottom .content_text {
  width: 53%;
  height: auto;
  padding: 0 2rem;
}

@media (max-width: 767px) {
  .message .content_box .content_bottom .content_text {
    width: 100%;
    padding: 5vw 0;
  }
}

.message .content_box .content_bottom .content_text p {
  line-height: 2.88rem;
}

/*PROFILE*/
.profile {
  width: 100%;
  height: auto;
  background: #FEB485;
  overflow: hidden;
}

@media (max-width: 1100px) {
  .profile {
    padding: 1rem;
    height: auto;
  }
}

@media (max-width: 767px) {
  .profile {
    height: auto;
  }
}

.profile .content_box {
  width: 100%;
  height: auto;
}

.profile .content_box .content_top {
  width: 100%;
  height: 30%;
  text-align: center;
  padding: 7rem;
}

@media (max-width: 767px) {
  .profile .content_box .content_top {
    padding: 5rem 0 2.4rem 0;
  }
}

.profile .content_box .content_top h2 {
  color: black;
}

.profile .content_box .content_bottom {
  width: 100%;
  height: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 7.5rem;
}

@media (max-width: 767px) {
  .profile .content_box .content_bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
  }
}

.profile .content_box .content_bottom .content_text {
  width: 55%;
  height: auto;
  padding: 0 3rem;
    overflow: hidden;
}

@media (max-width: 767px) {
  .profile .content_box .content_bottom .content_text {
    width: 100%;
    padding: 8vw 0;
  }
}

.profile .content_box .content_bottom .content_text p {
  line-height: 2.88rem;
}

@media (max-width: 767px) {
  .profile .content_box .content_bottom .content_text p {
    line-height: 2.5rem;
  }
}

.profile .content_box .content_bottom .content_image {
  width: 33.333vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}

@media (max-width: 767px) {
  .profile .content_box .content_bottom .content_image {
    width: 100%;
    height: 72vw;
    aspect-ratio: 335/270;
  }
}

.profile .content_box .content_bottom .content_image .prof_image {
  width: 100%;
  height: 20vw;
  aspect-ratio: 480/300;
  background: url("../image/profile1.png");
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .profile .content_box .content_bottom .content_image .prof_image {
    height: 72vw;
    aspect-ratio: 335/270;
  }
}

.profile .content_box .content_bottom .content_image .prof_image:nth-of-type(2) {
  background: url("../image/profile2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 0 bottom 30%;
}

.profile .content_box .content_bottom .content_image .prof_image:nth-of-type(3) {
  background: url("../image/profile3.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.profile .content_box .content_bottom .content_image .prof_image:nth-of-type(4) {
  background: url("../image/profile4.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.profile .content_box .content_bottom .content_image .prof_image:nth-of-type(5) {
  background: url("../image/profile5.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.profile .content_box .content_bottom .content_image .profdots {
  position: absolute;
  overflow: hidden;
  bottom: -3rem;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  text-align: center;
  padding-left: 2rem;
}

@media (max-width: 1100px) {
  .profile .content_box .content_bottom .content_image .profdots {
    bottom: -4vw;
  }
}

@media (max-width: 767px) {
  .profile .content_box .content_bottom .content_image .profdots {
    bottom: -10vw;
  }
}

.profile .content_box .content_bottom .content_image .profdots li {
  text-align: center;
  width: 2rem;
  height: 2rem;
  display: inline-block;
  margin: 0 .5rem;
  padding: 0;
  color: #EB5C01;
  font-size: 1rem;
  cursor: pointer;
}

.profile .content_box .content_bottom .content_image .profdots li button {
  position: relative;
  text-indent: -9999px;
}

.profile .content_box .content_bottom .content_image .profdots li button:before {
  content: '●';
  font-size: 1rem;
  color: white;
  position: absolute;
  top: 0;
  right: 1rem;
  text-indent: 0px;
}

.profile .content_box .content_bottom .content_image .profdots li.slick-active button:before {
  color: #EB5C01;
  content: '●';
}

/*FAQ*/
.faq {
  width: 100%;
  height: auto;
  background: white;
}

.faq .content_box {
  width: 100%;
  height: auto;
}

.faq .content_box .content_top {
  width: 100%;
  height: 30%;
  text-align: center;
  padding: 7.5rem;
}

.faq_content.js_qa_list h1 + h2 {
	margin-top: 1em;
}

.faq .content_box .content_top h2 {
  color: #EB5C01;
}

.faq_content.js_qa_list dl + h1 {
	margin-top: 2em;
}

@media (max-width: 767px) {
  .faq .content_box .content_top {
    padding: 5rem 0 2.4rem 0;
  }
}

.faq .content_box .faq_content {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .faq .content_box .faq_content h1 {
    font-size: 1.8rem;
  }
}

.faq .content_box .faq_content dl {
  width: 100%;
  position: relative;
  margin: 2rem 0;
  padding: 2.8rem 8rem 2.8rem 3rem;
  cursor: pointer;
  background: #F0F1F3;
}

@media (max-width: 767px) {
  .faq .content_box .faq_content dl {
    padding: 1rem 5rem 1rem 1rem;
  }
}

@media (max-width: 767px) {
  .faq .content_box .faq_content dl:nth-child(4) dt::before {
    top: .1rem;
  }
}

.faq .content_box .faq_content dl::before {
  position: absolute;
  top: 4.5rem;
  right: 3.5rem;
  display: block;
  width: 1.5rem;
  height: .2rem;
  margin: auto;
  font-size: 3rem;
  background: #EB5C01;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  content: '';
}

@media (max-width: 767px) {
  .faq .content_box .faq_content dl::before {
    top: 2rem;
    right: 2rem;
  }
}

.faq .content_box .faq_content dl::after {
  position: absolute;
  top: 4.5rem;
  right: 3.5rem;
  display: block;
  width: 1.5rem;
  height: .2rem;
  margin: auto;
  font-size: 3rem;
  background: #EB5C01;
  content: '';
}

@media (max-width: 767px) {
  .faq .content_box .faq_content dl::after {
    top: 2rem;
    right: 2rem;
  }
}

.faq .content_box .faq_content dl dt {
  position: relative;
  margin: 0;
  padding: 0 0 0 8rem;
  font-weight: 600;
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  .faq .content_box .faq_content dl dt {
    font-size: 1.6rem;
    padding: 0 0 0 3rem;
  }
}

.faq .content_box .faq_content dl dt::before {
  font-size: 2.4rem;
  line-height: 1;
  position: absolute;
  top: .1rem;
  left: 0;
  display: block;
  content: 'Q.';
  color: #EB5C01;
}

@media (max-width: 767px) {
  .faq .content_box .faq_content dl dt::before {
    top: 1rem;
    font-size: 1.8rem;
  }
}

.faq .content_box .faq_content dl dd {
  position: relative;
  display: none;
  height: auto;
  margin: 2rem 0 0;
  padding: 0 0 0 8rem;
}

@media (max-width: 767px) {
  .faq .content_box .faq_content dl dd {
    font-size: 1.6rem;
    padding: 0 0 0 3rem;
  }
}

.faq .content_box .faq_content dl dd::before {
  font-size: 2.4rem;
  line-height: 1;
  position: absolute;
  top: .3rem;
  left: .2rem;
  display: block;
  content: 'A.';
  font-weight: 500;
  color: #EB5C01;
}

@media (max-width: 767px) {
  .faq .content_box .faq_content dl dd::before {
    top: 1rem;
    font-size: 1.8rem;
  }
}

.faq .content_box .faq_content dl dd p {
  margin: 3rem 0 0;
  font-size: 2.4rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .faq .content_box .faq_content dl dd p {
    font-size: 1.6rem;
  }
}

.faq .content_box .faq_content dl dd p:first-child {
  margin-top: 0;
}

.faq .content_box .faq_content .open::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  content: '';
}

/*POLICY*/
.policy {
  width: 100%;
  height: auto;
  background: #F0F1F3;
  padding: 8rem 0;
}

.policy .inner {
  width: 90%;
  max-width: 120rem;
}

.policy .content_box {
  width: 100%;
  height: auto;
  background: white;
    padding-bottom: 8em;
}

.policy .content_box .pol_inner {
  width: 54.861vw;
  height: auto;
  aspect-ratio: 790/410;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy .content_box .pol_inner {
    width: 95%;
  }
}

.policy .content_box .pol_inner .content_top {
  width: 100%;
  height: 23rem;
  text-align: center;
  padding: 7.5rem;
}

.policy .content_box .pol_inner .content_top h2 {
  color: #EB5C01;
}

@media (max-width: 767px) {
  .policy .content_box .pol_inner .content_top {
    height: auto;
    padding: 5rem 0 2.4rem 0;
  }
}

.policy .content_box .pol_inner .content_grad {
  width: 100%;
  height: auto;
  position: relative;
}

.policy .content_box .pol_inner .content_grad .grad-btn {
  position: absolute;
  bottom: 6rem;
  left: 0;
  right: 0;
  z-index: 2;
  width: 17.6rem;
  font-size: 1.6rem;
  color: #EB5C01;
  text-align: center;
  margin: 0 auto;
  padding: 1.2rem;
  background: white;
  border: 0.1rem solid #EB5C01;
  border-radius: .4rem;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.policy .content_box .pol_inner .content_grad .grad-btn:hover {
  color: white;
  background: #EB5C01;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.policy .content_box .pol_inner .content_grad .grad-btn::before {
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "もっと見る \f078";
}

.policy .content_box .pol_inner .content_grad .grad_item {
  position: relative;
  overflow: hidden;
  max-height: 135rem;
}

@media (max-width: 767px) {
  .policy .content_box .pol_inner .content_grad .grad_item {
    max-height: 65rem;
  }
}

.policy .content_box .pol_inner .content_grad .grad_item h2 {
  position: relative;
  width: 100%;
  padding: .4rem 0;
  margin: 3em 0 2.4rem 0;
  border-bottom: 0.2rem solid #EB5C01;
}

@media (max-width: 767px) {
  .policy .content_box .pol_inner .content_grad .grad_item h2 {
    margin-bottom: 1rem;
  }
}

.policy .content_box .pol_inner .content_grad .grad_item h2:before {
  content: "";
  position: absolute;
  bottom: -.2rem;
  right: 0;
  width: 85%;
  height: initial;
  border-bottom: 0.2rem solid black;
}

.policy .content_box .pol_inner .content_grad .grad_item p {
  line-height: 3rem;
}

.policy .content_box .pol_inner .content_grad .grad_item .pol_image {
  margin: 2.4rem 0;
  width: 100% !important;
  height: 29vw;
  aspect-ratio: 790/410;
  background: url("../image/children.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .policy .content_box .pol_inner .content_grad .grad_item .pol_image {
    height: 43vw;
  }
}

.policy .content_box .pol_inner .content_grad .grad_item .pol_image:nth-of-type(2) {
  background: url("../image/edu.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.policy .content_box .pol_inner .content_grad .grad_item .pol_image:nth-of-type(3) {
  background: url("../image/health.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.policy .content_box .pol_inner .content_grad .grad_item .pol_image:nth-of-type(4) {
  background: url("../image/care.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.policy .content_box .pol_inner .content_grad .grad_item .pol_image:nth-of-type(5) {
  background: url("../image/disaster.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.policy .content_box .pol_inner .content_grad .grad_item .pol_image:nth-of-type(6) {
  background: url("../image/develop.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.policy .content_box .pol_inner .content_grad .grad_item .pol_image:last-child {
  margin-bottom: 16.8rem;
}

.policy .content_box .pol_inner .content_grad .grad_item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(60%, white), to(white));
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 60%, white 100%);
  content: "";
}

.policy .content_box .pol_inner .content_grad .grad-trigger {
  display: none;
}

.policy .content_box .pol_inner .content_grad .grad-trigger:checked ~ .grad-btn::before {
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "閉じる \f00d";
}

.policy .content_box .pol_inner .content_grad .grad-trigger:checked ~ .grad_item {
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  max-height: 1000rem;
}

.policy .content_box .pol_inner .content_grad .grad-trigger:checked ~ .grad_item::before {
  display: none;
}

/*SNS*/
.sns {
  width: 100%;
  height: auto;
  background: #FEB485;
  overflow: hidden;
}
#top_sns.sns{
    background: #F0F1F3;
}

.sns .sns_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  padding: 5rem 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#top_sns.sns .sns_box{
    padding-top: 0;
}

@media (max-width: 767px) {
  .sns .sns_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sns .sns_box .sns_left {
  width: 35%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#top_sns.sns .sns_box .sns_left,
#top_sns.sns .sns_box .sns_right{
    width: 45%;
    margin: 0 auto;
    text-align: center;
}
#top_sns.sns .sns_box .sns_left img, #top_sns.sns .sns_box .sns_right img {
	max-width: 100%;
	max-height: 180px;
}

@media (max-width: 767px) {
  .sns .sns_box .sns_left,
    #top_sns.sns .sns_box .sns_left,
   #top_sns.sns .sns_box .sns_right {
    width: 100%;
    text-align: center;
  }
    #top_sns.sns .sns_box .sns_left{
        margin-bottom: 3em;
    }
}

.sns .sns_box .sns_left h2 {
  margin-bottom: 2.4rem;
}

@media (max-width: 767px) {
  .sns .sns_box .sns_left h2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    color: #EB5C01;
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .sns .sns_box .sns_left h1 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 1rem;
  }
}

.sns .sns_box .sns_left .sns_icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .sns .sns_box .sns_left .sns_icons {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.sns .sns_box .sns_left .sns_icons a {
  margin: 2.4rem 2.4rem 2.4rem 0;
}

@media (max-width: 767px) {
  .sns .sns_box .sns_left .sns_icons a {
    margin: 2.4rem 1rem 2.4rem 1rem;
  }
}

.sns .sns_box .sns_left .sns_icons a img {
  width: 5.5rem;
}

@media (max-width: 767px) {
  .sns .sns_box .sns_left p {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-bottom: 1rem;
  }
}

.sns .sns_box .twitter {
  margin: 0 1.8rem;
    display: none;
}

@media (max-width: 767px) {
  .sns .sns_box .twitter {
    display: none;
  }
}

.sns .sns_box .sp_twitter {
  display: none;
}

@media (max-width: 767px) {
  .sns .sns_box .sp_twitter {
    /* display: block; */
          display: none;
    margin: 0 1.8rem;
    text-align: center;
  }
}

/* footer */
footer {
  overflow: hidden;
}

footer .contact {
  background: url("../image/contact_back.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  display: table;
}

@media (max-width: 767px) {
  footer .contact {
    background-position: left 50% bottom 30%;
  }
}

footer .contact .contact_box {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 38rem;
  height: auto;
}

@media (max-width: 767px) {
  footer .contact .contact_box {
    width: 90%;
  }
}

footer .contact .contact_box .contact_content {
  display: inline-block;
  width: 38rem;
  height: auto;
  text-align: center;
  background: white;
  border-radius: .8rem;
  margin: 8rem 0;
  padding: 3.2rem 0;
}

@media (max-width: 767px) {
  footer .contact .contact_box .contact_content {
    width: 70%;
    margin: 5rem 0;
  }
}

footer .contact .contact_box .contact_content h2 {
  color: #EB5C01;
}

footer .contact .contact_box .contact_content h1 {
  margin: 2.9rem 0;
}

@media (max-width: 767px) {
  footer .contact .contact_box .contact_content h1 {
    margin: 1rem 0;
  }
}

footer .contact .contact_box .contact_content p {
  font-size: 1.4rem;
  line-height: 2.24rem;
}

footer .cp {
  width: 100%;
  height: auto;
  background: #02182B;
}

footer .cp p {
  text-align: center;
  padding: 1.3rem 0;
  font-size: 1rem;
  color: #ffffff9a;
}

/*==================*/
/*# sourceMappingURL=style.css.map */