@charset "UTF-8";
/* ----------------------------------------------------------

 Base Layout

---------------------------------------------------------- */

html {
	font-size: 62.5%;/* 10px */
  margin-top: 0 !important;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 2;

  overflow-x: hidden;

  letter-spacing: .4px;

  color: #4C4C4C;
  background: #F8F6F2;
  position: relative;
  word-break: break-all;

  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}

@-webkit-keyframes opening {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opening {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.anime {
  opacity: 0;
}

.open {
  opacity: 1;
-webkit-animation: 1.0s ease-in-out 0s normal opening both;
          animation: 1.0s ease-in-out 0s normal opening both;
}


.en {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  word-break: normal;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

em {
  font-style: inherit;
}


a {
  -webkit-transition: .3s;
       -o-transition: .3s;
          transition: .3s;
  text-decoration: none;

  color: inherit;
}

a:hover,
a:active {
  opacity: .8;
}

*:focus {
  outline: none;
}

#topcontrol {
  z-index: 100;
}

#MenuNavi {
  display: none;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

mark {
  background: rgba(255,231,105,.5);
  font-weight: 500;
}


@media screen and (max-width: 760px) {
  body {
    font-size: 1.5rem;
    background-size: 10px auto;
  }

}



/* ----------------------------------------------------------
 * Selected Text
 *---------------------------------------------------------- */
::-moz-selection {
  background: rgba(255,231,105,.5);
  /* Safari */
}
::selection {
  background: rgba(255,231,105,.5);
  /* Safari */
}

::-moz-selection {
  background: rgba(255,231,105,.5);
  /* Firefox */
}

/*  btn
---------------------------------------------------------- */
.btn_more {
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  display: block;
}

.btn_more a,
.btn_more span {
  display: inline-block;
  font-weight: 700;
  line-height: 40px;
  padding-right: 50px;
  text-decoration: underline;
  transition: .3s;
  position: relative;
}

.btn_more.back a {
  padding-left: 50px;
  padding-right: 0;
}

.btn_more a::after,
.btn_more span::after {
  content: "";
  position: absolute;
  font-size: 1.6rem;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: underline;
  background: #F17052 url(../images/cmn/arrow_w.svg) center center no-repeat;
  background-size: 11px auto;
  transition: .3s;
}

.btn_more.back a::after {
  right: auto;
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}

.thema02 .btn_more a::after {
  background: #FFF url(../images/cmn/arrow.svg) center center no-repeat;
  background-size: 11px auto;
}

.btn_more a:hover{
  opacity: 1;
}

.btn_more a:hover::after,
a:hover .btn_more span::after {
  transform: translateY(-50%) scale(1.1);
  transform-origin: center;
}

.btn_more.back a:hover::after {
  transform: translateY(-50%) rotate(180deg) scale(1.1);
}

.btn_more.down a::after {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}


.btn_list a {
  display: block;
  line-height: 17px;
  padding-left: 30px;
  background: url(../images/cmn/icon_list.svg) 0 2px no-repeat;
  background-size: 15px auto;
  text-decoration: underline;
  font-size: 1.4rem;
  font-weight: 700;
  transition: .3s;
}

.btn_list a:hover {
  opacity: 1;
  color: #1B254D;
}

.btn_sub {
  width: 240px;
  margin-left: auto;
  margin-right: auto;
}

.btn_sub span {
  line-height: 40px;
  background: #303030;
  color: #FFF;
  font-size: 1.2rem;
  position: relative;
  border-radius: 20px;
  display: block;
  font-weight: bold;
  text-align: center;
  transition: .3s;
}

a:hover .btn_sub span {
  background: #FF810D;
}

.btn_sub span::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: url(../images/cmn/arrow.svg) center center no-repeat;
  background-size: 8px auto;
  transform: rotate(45deg);
  transition: .3s;
}

a:hover .btn_sub span::before {
  width: 34px;
}

@media screen and (max-width: 760px) {
  .btn_more {
    margin-top: 5%;
  }

  .btn_more a,
  .btn_more span {
    line-height: 30px;
    padding-right: 40px;
    font-size: 1.3rem;
  }

  .btn_more a::after,
  .btn_more span::after {
    width: 30px;
    height: 30px;
  }

  .btn_more.back a {
    padding-left: 40px;
  }
}

/*  wrapInner
---------------------------------------------------------- */
#wrapInner {
  width: 100%;
}

#container {
  width: 1000px;
  margin: 0 auto;
  padding: 0 0 35px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes trackanim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.003);
  }
  100% {
    transform: scale(1);
  }
}


/* 無限スクロール */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.bg_txt_box {
  position: absolute;
  overflow:hidden;
  width: 100%;
}

.bg_txt_box .bg_txt {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
  will-change: transform;
}

.bg_txt_box .bg_txt span {
  padding: 0 25px;
  flex-shrink: 0;
  white-space: nowrap;
}

/*  popup_cta
---------------------------------------------------------- */
.register-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  align-items: center;
  justify-content: center;
}

.register-modal.is-active {
  display: flex;
}

.register-modal__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #f0bc4bb8, #da465ab8);
}

.register-modal__body {
  position: relative;
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
  padding: 6%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 20px 0px rgb(177 169 147 / 0.10);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  row-gap: 5vw;
  column-gap: 5%;
}

.register-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #999;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.register_box {
  flex-basis: 47.5%;
}

.register-modal__logo {
  margin-bottom: 10px;
  text-align: center;
  background: #fff;
}

.register-modal__logo img {
  width: auto;
  height: 40px;
}

.register-modal__catch {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.register-modal__lead {
  margin-bottom: 8px;
  color: #06C755;
  font-weight: 700;
  text-align: center;
  line-height: 1.0;
  font-size: 1.6rem;
}

.register-modal__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  margin-bottom: 8px;
  padding: 0;
  border-radius: 40px;
  border: 0;
  background: #fff;
  color: #4C4C4C;
  font: inherit;
  cursor: pointer;
  transition: .3s;
}

.register-modal__button:hover {
  opacity: .6;
}

.register-modal__button span {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.register-modal__button--line {
  margin-bottom: 14px;
  height: 60px;
  background: #06C755;
}

.register-modal__button--line span {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
}

.register-modal__button--outline {
  border: 1px solid #ddd;
}

.register-modal__button--tel {
  margin-bottom: 20px;
}

.register-modal__icon {
  flex-shrink: 0;
}

.register-modal__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.register-modal__divider span {
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.register-modal__divider em {
  color: #aaa;
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}

.register-modal__note {
  color: #888;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.register-modal__note span,
.register-modal__note a {
  color: #e8703a;
  text-decoration: underline;
  cursor: pointer;
}

@media screen and (max-width: 760px) {
.register-modal__body {
  padding: 8%;
}

.register_box {
  flex-basis: 100%;
}
.register-modal__lead {
  font-size: 1.4rem;
}

.register-modal__button span {
  font-size: 1.4rem;
}

.register-modal__button--line span {
  font-size: 1.6rem;
}
}


/*  Header
 *---------------------------------------------------------- */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  background: #f8f6f2db;
}

header .inner {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: content-box;
  padding: 2vw 2%;
  overflow: hidden;
}

header .inner .logo_box {
  line-height: 1;
  text-align: center;
  margin-right: auto;
  padding-right: 3vw;
}

header .inner h1 {
  display: flex;
  align-items: center;
}

header .inner h1 a {
  display: block;
  overflow: hidden;

  width: 244px;
  height: 50px;
  margin: 0 auto;

  white-space: nowrap;
  text-indent: 105%;

  background: url(../images/cmn/logo.svg) no-repeat;
  background-size: auto 100%;
}

@media screen and (max-width: 1280px) {
  header .inner h1 a {
    width: 314px;
  }
}

header .inner h1 span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.3rem;
  color: #303030;
  padding-left: 12px;
  word-break: keep-all;
}

header .inner .gnav_box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: 42px;
  font-size: 1.6rem;
  font-weight: 500;
  overflow: hidden;
}

header .inner .gnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  line-height: 1.2;
  column-gap: 2vw;
  margin-right: 3vw;
}

header .inner .gnav a {
  line-height: 42px;
}

.banner .drawer-hamburger {
  display: none;
}

@media screen and (max-width: 1000px) {
  header .inner .gnav_box {
    padding-right: 65px;
  }
  header .inner .gnav {
    display: none;
  }

  .banner .drawer-hamburger {
    display: block;
  }
}

header .inner .gnav a:hover {
  color: #F17052;
}

header .inner .cv_link {
  display: flex;
  column-gap: 8px;
  justify-content: flex-end;
  min-width: 300px;
}

header .inner .cv_link a {
  display: block;
  background: #FFF;
  color: #787069;
  border: 1px solid rgba(177,169,147,.6);
  font-weight: 700;
  height: 42px;
  line-height: 38px;
  position: relative;
  text-align: center;
  transition: .3s;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 0 26px;
}

header .inner .cv_link .cv a {
  color: #FFF;
  border: none;
  background: linear-gradient(90deg, #EF9152, #F25053);
}

@media screen and (max-width: 760px) {

header .inner {
  padding: 4.2vw 4% 4.5vw;
}

header .inner h1 a {
  width: 148px;
  height: 30px;
}

header .inner .gnav_box {
  height: 32px;
  padding-right: 45px;
}
header .inner .cv_link {
  min-width: none;
}

header .inner .cv_link a {
  height: 32px;
  line-height: 30px;
  font-size: 1.2rem;
  padding: 0 15px;
}
}


/*  pan
 *---------------------------------------------------------- */

main {
  position: relative;
}

.navi_link_block {
  position: absolute;
  z-index: 999;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 2.5%;
  text-align: left;
}

.navi_link_block p {
  font-size: 1.3rem;
  line-height: 1.0;
  display: inline-block;
  vertical-align: middle;
}

.navi_link_block p.home,
.navi_link_block p.index {
  padding-right: 12px;
  margin-right: 9px;
  position: relative;
}

.navi_link_block p.home::after,
.navi_link_block p.index:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  border-top: 1px solid #B0B0B0;
  border-right: 1px solid #B0B0B0;
  transform: rotate(45deg) translateY(-50%);
}

.navi_link_block p.home a {
  display: block;
}

.navi_link_block .current {
  opacity: .6;
}

.navi_link_block a {
  text-decoration: underline;
}

.navi_link_block p br {
  display: none;
}


@media screen and (max-width: 760px) {
  .navi_link_block {
    padding: 0 5%;
  }
  .navi_link_block p {
    font-size: 1.0rem;
  }
}


/*  h2
 *---------------------------------------------------------- */

.title_box, .article_h2 {
  text-align: left;
  margin-bottom: 30px;
}

.article_h2 {
  padding: 8vw 6% 0;
  max-width: 1200px;
  margin: 0 auto 4vw;
  box-sizing: content-box;
}

.title_box.sub {
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}

.title_box.flex {
  display: flex;
  align-items: center;
  column-gap: 12px;
  flex-wrap: wrap;
}

.title_box .stit, .article_h2 .stit {
  font-size: 4.0rem;
  line-height: 1.2;
  font-weight: 700;
}

.article_h2 .stit {
  font-size: 4.8rem;
}

.title_box.sub .stit, .article_h2.sub .stit {
  font-size: 3.6rem;
}

.title_box.sub .stit .lead {
  font-size: 1.8rem;
  padding-left: 15px;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  margin-top: -10px;
}

.title_box .tit, .article_h2 .tit {
  font-weight: 900;
  font-size: 2.0rem;
  position: relative;
  z-index: 99;
  line-height: 1.2;
  display: inline-block;
  background: linear-gradient(90deg, #EF9152, #F25053);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .8vw;
}

.article_h2 .tit {
  font-size: 2.2rem;
}

.title_box .tit em, .article_h2 .tit em {
  font-size: 4.4rem;
  color: #1B254D;
}

.title_box .tit strong {
  font-size: 6.4rem;
}

.article_h2 .tit em {
  font-size: 5.4rem;
}

.article_h2 .title_txt,
.title_box .title_txt {
  margin-top: 2vw;
  font-weight: 500;
  line-height: 2;
  width: 100%;
}

.article_h2 .title_txt .bg {
  background: #FFF;
  border-radius: 2px;
  padding: 2px 8px 4px;
  box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.title_box.sub .btn_list {
  position: absolute;
  bottom: 4px;
  right: 0;
}

.title_box.sub .btn_list a {
  display: block;
  line-height: 17px;
  padding-left: 30px;
  background: url(../images/cmn/icon_list.svg) 0 2px no-repeat;
  background-size: 15px auto;
  text-decoration: underline;
  font-size: 1.4rem;
  font-weight: 700;
  transition: .3s;
}

.title_box.sub .btn_list a:hover {
  opacity: 1;
  color: #1B254D;
}

@media screen and (max-width: 760px) {
  .title_box, .article_h2 {
    margin-bottom: 6%;
  }

  .title_box.sub {
    margin-bottom: 5%;
  }

  .article_h2 {
    margin-bottom: 7%;
    padding-top: 12%;
    row-gap: 1.5vw;
  }

  .title_box .stit, .article_h2 .stit {
    font-size: 2.8rem;
  }

  .title_box:not(.flex) .stit {
    margin-bottom: 2%;
  }

  .title_box.sub .stit .lead {
    font-size: 1.3rem;
    padding-left: 0;
    display: block;
    margin-top: 3%;
  }

  .title_box .tit, .article_h2 .tit {
    font-size: 1.4rem;
    margin-bottom: 1.5vw;
  }

  .article_h2 .tit {
    font-size: 1.6rem;
    line-height: 1.0;
    word-break: break-all;
    margin-bottom: 2vw;
  }

  .title_box.sub .tit {
    margin-right: 0;
  }

  .article_h2 .title_txt {
    margin-top: 2%;
    font-size: 1.3rem;
    padding: 0 0;
  }

  .title_box .title_txt {
    margin-top: 3%;
    width: 100%;
  }

  .title_box.sub .stit {
    font-size: 2.2rem;
  }

  .title_box.sub .btn_list {
    position: absolute;
    bottom: 4px;
    right: 0;
  }

  .title_box.sub .btn_list a {
    display: block;
    line-height: 16px;
    padding-left: 22px;
    background-size: 13px auto;
    font-size: 1.2rem;
  }
}


/*  .container
 *---------------------------------------------------------- */
.container {
  position: relative;
  z-index: 99;
}

.section .inner {
  padding: 0 6%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: content-box;
}

.section .inner_narrow {
  max-width: 1000px;
}

.bg_note {
  background: #FFF url(../images/cmn/bg_note.png) top center repeat;
  background-size: 14px auto;
}

ul.category {
  line-height: 1.0;
}

ul.category li {
  display: inline-block;
  color: #187DBD;
  font-size: 1.3rem;
  margin-right: 15px;
  font-weight: 700;
  line-height: 1.0;
  margin-top: 10px;
}

ul.category li::before {
  content: "# ";
}

.page_txt {
  text-align: center;
  margin-bottom: 30px;
}

.section_cmn {
  background: #FFF;
  border-radius: 20px;
  padding: 60px 6%;
  position: relative;
}

.section_cmn .btn_more {
  margin-top: 50px;
}

.section_sub {
  font-size: 1.4em;
  margin-bottom: 20px;
}

.anchor_box {
  padding-top: 100px;
  margin-top: -100px;
}

@media screen and (max-width: 760px) {
  .container {
    padding-bottom: 5%;
  }

  .section .inner {
    padding: 0 7%;
  }

  .page_txt {
    margin-bottom: 5%;
  }

  .bg_note {
    background-size: 12px auto;
  }

  .note_box {
    padding: 8% 8%;
  }

  .note_box::before {
    border-right: 50px solid transparent;
    border-top: 50px solid rgba(255,231,105,.6);
  }

  .note_box .num {
    top: 6px;
    left: 12px;
    font-size: .9rem;
  }

  .section_cmn .btn_more {
    margin-top: 10%;
  }

  .section_sub {
    font-size: 1.1em;
    margin-bottom: 5%;
  }

  ul.category {
    margin-top: 1%;
  }

  ul.category li {
    font-size: 1.2rem;
    margin-right: 3%;
    margin-top: 3%;
  }

  .anchor_box {
    padding-top: 50px;
    margin-top: -50px;
  }

}


/* cv_link */
.cv_link.fix {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 52px;
  z-index: 999;
  display: flex;
}

.cv_link.fix .btn_cv {
  flex-basis: 50%;
}

.cv_link.fix .btn_cv a {
  height: 52px;
  padding: 9px 5px;
  font-size: 4.4vw;
  font-weight: 700;
  line-height: 1.0;
  text-align: center;
}

.cv_link.fix .btn_cv.contact a {
  border: 1px solid rgba(255,255,255,.4);
}

.cv_link.fix .btn_cv small {
  font-size: 2.8vw;
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
}

.cv_link.fix .btn_cv a::before {
  display: none;
}


/*  section_nav_contents
---------------------------------------------------------- */
.section_nav_contents {
  background: #F6F2E7;
  padding: 100px 0;
}

.section_nav_contents .inner {
  position: relative;
}

.section_nav_contents .inner .bg_en {
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(90deg) translateX(90%);
  transform-origin: top right;
  font-size: 14rem;
  color: #FFF;
  font-weight: 300;
}

.section_nav_contents .contents_box {
  background: #FFF;
  border: 1px solid #D6D6D6;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 99;
  overflow: hidden;
}

.section_nav_contents .contents_box .box {
  flex-basis: 25%;
  transition: .3s;
}

.section_nav_contents .contents_box .box:not(:nth-child(4n)) {
  border-right: 1px solid #D6D6D6;
}

.section_nav_contents .contents_box .box:nth-child(4n) {
  border-right: 1px solid transparent;
}

.section_nav_contents .contents_box .box:nth-child(4):hover {
  border-color: #CD5C48;
}

.section_nav_contents .contents_box .box:nth-child(8):hover {
  border-color: #D07E3B;
}

.section_nav_contents .contents_box .box:nth-child(1),
.section_nav_contents .contents_box .box:nth-child(2),
.section_nav_contents .contents_box .box:nth-child(3),
.section_nav_contents .contents_box .box:nth-child(4) {
  border-bottom: 1px solid #D6D6D6;
}

.section_nav_contents .contents_box .box a {
  padding: 25px;
  display: block;
  text-align: center;
  position: relative;
  bottom: 0;
}

.section_nav_contents .contents_box .box a:hover {
  opacity: 1;
  background: #258853;
  color: #FFF;
}

.section_nav_contents .contents_box .box:nth-child(2) a:hover,
.section_nav_contents .contents_box .box:nth-child(8) a:hover {
  background: #D07E3B;
}

.section_nav_contents .contents_box .box:nth-child(3) a:hover,
.section_nav_contents .contents_box .box:nth-child(5) a:hover {
  background: #187DBD;
}

.section_nav_contents .contents_box .box:nth-child(4) a:hover,
.section_nav_contents .contents_box .box:nth-child(6) a:hover {
  background: #CD5C48;
}

.section_nav_contents .contents_box .box a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #303030 url(../images/cmn/arrow_w.svg) center center no-repeat;
  background-size: 7.5px auto;
}

.section_nav_contents .contents_box .box a:hover::after {
  background-color: #FFF;
  background-image: url(../images/cmn/arrow.svg);
}

.section_nav_contents .contents_box .box .ph {
  border-radius: 6px;
  overflow: hidden;
}

.section_nav_contents .contents_box .box .ph img {
  transition: .3s;
}

.section_nav_contents .contents_box .box a:hover .ph img {
  opacity: 1;
  transform: scale(1.04);
}

.section_nav_contents .contents_box .box .catch {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.0;
  margin: 16px 0 10px;
}

.section_nav_contents .contents_box .box .sub {
  font-size: 1.0rem;
  opacity: .3;
}


@media screen and (max-width: 760px) {
  .section_nav_contents {
    padding: 12% 0;
    overflow-x: hidden;
  }

  .section_nav_contents .inner {
    padding: 0 3%;
  }

  .section_nav_contents .inner .bg_en {
    font-size: 8rem;
    right: -8px;
  }

  .section_nav_contents .contents_box {
    border-radius: 12px;
  }

  .section_nav_contents .contents_box .box {
    flex-basis: 50%;
  }

  .section_nav_contents .contents_box .box:nth-child(5),
  .section_nav_contents .contents_box .box:nth-child(6) {
    border-bottom: 1px solid #D6D6D6;
  }

  .section_nav_contents .contents_box .box:nth-child(2n) {
    border-right: 1px solid transparent;
  }


  .section_nav_contents .contents_box .box a {
    padding: 6% 6% 10%;
  }

  .section_nav_contents .contents_box .box a::after {
    bottom: 7px;
    right: 7px;
    width: 20px;
    height: 20px;
    background-size: 5.5px auto;
  }

  .section_nav_contents .contents_box .box .ph {
    border-radius: 6px;
  }

  .section_nav_contents .contents_box .box .catch {
    font-size: 1.5rem;
    margin: 6% 0 5%;
  }

  .section_nav_contents .contents_box .box .sub {
    font-size: .9rem;
  }
}


/*  menu
---------------------------------------------------------- */
.menu_wrapper .menu_box {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 5%;
  row-gap: 20px;
}

.menu_wrapper .menu_box .sitemap_box {
  flex-basis: 45%;
}

.menu_wrapper .menu_box .sitemap_box ul li {
  display: flex;
  align-items: center;
  margin: 0;
  flex-basis: 100%;
  border-bottom: 1px solid rgba(177,169,147,.3);
}

.menu_wrapper .menu_box .cv_box {
  flex-basis: 50%;
}

.menu_wrapper .sitemap_box .box {
  display: flex;
  column-gap: 40px;
  flex-wrap: wrap;
}


@media screen and (max-width: 760px) {
  .menu_wrapper .menu_box .sitemap_box,
  .menu_wrapper .menu_box .cv_box {
    flex-basis: 100%;
  }

  .menu_wrapper .menu_box .sitemap_box ul li a {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
  }

  .menu_wrapper .menu_box .sitemap_box ul > li a::after {
    top: 28px;
  }

  .menu_wrapper .menu_wrap {
    padding: 75px 6% 0;
  }

  .menu_wrapper .sitemap_box .box {
    column-gap: 30px;
  }

}


/*  section_cv
---------------------------------------------------------- */
.sub_cta {
  position: relative;
  z-index: 9;
  margin: -20px 0 40px;
}

.section_cv {
  position: relative;
  z-index: 9;
  margin-top: -15vw;
  width: 100%;
  aspect-ratio: 148 / 106;
  background: url(../images/cmn/bg_footer_cta.png) top center no-repeat;
  background-size: auto 100%;
  color: #FFF;
  padding: 0 6%;
  display: flex;
  align-items: center;
}

.sub_cta .section_cv {
  margin: 0 auto;
  background: url(../images/cmn/bg_cta_sub.svg) top center no-repeat;
  background-size: auto 100%;
  color: #4C4C4C;
  padding: 0 6%;
  aspect-ratio: unset;
}

.section_cv .inner {
  position: relative;
  z-index: 99;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 4%;
  padding: 20vw 0 12vw;
}

.sub_cta .section_cv .inner {
  max-width: 1000px;
  flex-direction: row-reverse;
  column-gap: 6%;
  padding: 170px 0 90px;
}

.section_cv .mock_box {
  width: 50%;
}

.sub_cta .section_cv .mock_box {
  width: 48%;
}

.cv_box {
  text-align: center;
}

.section_cv .cv_box {
  width: 46%;
  max-width: 460px;
  text-align: center;
}

.section_cv .cv_box .catch {
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.0;
}

.sub_cta .section_cv .cv_box .catch {
  display: inline-block;
  background: linear-gradient(90deg, #EF9152, #F25053);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section_cv .cv_box .catch em {
  font-size: 2.4rem;
}

.section_cv .cv_box .flogo {
  width: 316px;
  height: 65px;
  background: url(../images/cmn/logo_cta.svg) top center no-repeat;
  background-size: 100% auto;
  margin: 0 auto 30px;
}

.sub_cta .cv_box .flogo {
  width: 308px;
  height: 63px;
  background-image: url(../images/cmn/logo.svg);
}

.cv_box .btn_cv a {
  display: block;
  background: #FFF;
  line-height: 80px;
  border-radius: 100px;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 0 60px;
  position: relative;
  transition: .3s;
}

.sub_cta .cv_box .btn_cv a {
  background: linear-gradient(90deg, #EF9152, #F25053);
  color: #FFF;
}

.cv_box .btn_cv a:hover {
  transform: translateY(4px);
  opacity: 1;
}

.cv_box .btn_cv a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  border-radius: 44px;
  border-bottom: 4px solid rgba(255, 255, 255, 0.5);
  transition: .3s;
  width: 100%;
  height: 100%;
}

.sub_cta .cv_box .btn_cv a::before {
  border-bottom: 4px solid #E24434;
}

.cv_box .btn_cv a:hover::before {
  border-width: 0px;
}

.sub_cta .cv_box .btn_cv a:hover::before {
  border-width: 0px;
}

.cv_box .btn_cv a span {
  display: inline-block;
  background: linear-gradient(90deg, #EF9152, #F25053);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub_cta .cv_box .btn_cv a span {
  background: none;
  -webkit-text-fill-color: inherit;
}

.cv_box .btn_cv a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  width: 20px;
  height: 20px;
  background: url(../images/cmn/arrow_cv.svg) center center no-repeat;
  background-size: 100% 100%;
  transform: translate(50%,-50%);
}

.sub_cta .cv_box .btn_cv a::after {
  background-image: url(../images/cmn/arrow_cv_w.svg);
}

.cv_box .btn_login {
  margin-top: 15px;
}

.cv_box .btn_login a {
  display: inline-block;
  text-decoration: underline;
  font-size: 1.8rem;
  font-weight: 700;
  padding-right: 30px;
  background: url(../images/cmn/arrow_sub_w.svg) right center no-repeat ;
  background-size: 20px auto;
}

.sub_cta .cv_box .btn_login a {
  background-image: url(../images/cmn/arrow_sub.svg);
}

.cv_box .app_link {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  column-gap: 12px;
}

.cv_box .app_link img {
  height: 56px;
}

.cv_box .notice {
  opacity: .8;
  font-size: 1.2rem;
  margin-top: 20px;
}

.sub_cta .section_cv .notice {
  opacity: .6;
}

@media screen and (max-width: 760px) {
.sub_cta {
  margin: -16% 0 2%;
}

.section_cv {
  margin-top: 4vw;
  margin-bottom: 0;
  background-image: url(../images/cmn/bg_footer_cta_sp.png);
  background-size: cover;
  padding: 0 4%;
  min-height: 174vw;
}

.sub_cta .section_cv {
  background-image: url(../images/cmn/bg_cta_sub.svg);
  padding: 0 6%;
}

.section_cv .inner {
  flex-wrap: wrap;
  row-gap: 4vw;
  padding: 5vw 0 18vw;
}

.sub_cta .section_cv .inner {
  flex-direction: row-reverse;
  column-gap: 6%;
  padding: 30vw 0 25vw;
}

.section_cv .mock_box {
  width: 80%;
}

.sub_cta .section_cv .mock_box {
  width: 100%;
}

.section_cv .cv_box {
  width: 100%;
}

.section_cv .cv_box .catch {
  font-size: 1.6rem;
  margin-bottom: 3%;
}

.section_cv .cv_box .catch em {
  font-size: 2.0rem;
}

.section_cv .cv_box .flogo {
  width: 240px;
  height: 50px;
  margin: 0 auto 5%;
}

.sub_cta .cv_box .flogo {
  width: 240px;
  height: 50px;
}

.cv_box .btn_cv a {
  line-height: 65px;
  font-size: 2rem;
  padding: 0 40px;
}

.cv_box .btn_cv a::after {
  right: 35px;
  width: 16px;
  height: 16px;
}

.cv_box .btn_login {
  margin-top: 2%;
}

.cv_box .btn_login a {
  font-size: 1.6rem;
  padding-right: 24px;
  background-size: 16px auto;
}

.cv_box .app_link {
  margin-top: 6%;
  column-gap: 2vw;
}

.cv_box .app_link img {
  height: 12vw;
}

.cv_box .notice {
  font-size: 1.1rem;
  margin-top: 5%;
}

}



/*  footer
---------------------------------------------------------- */
.footer {
  width: 100%;
  padding: 0 5vw 5vw;
  text-align: center;
  position: relative;
  z-index: 99;
}

.footer .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  row-gap: 40px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.footer .footer_link_block {
  flex-basis: 55%;
  position: relative;
  text-align: left;
}

.footer .flogo {
  width: 30vw;
  max-width: 316px;
  margin: 0 0 2vw;
  text-align: left;
}

.footer .flogo a {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
}

.footer .flogo img {
  width: 100%;
}

.footer .info_box .txt {
  font-size: 1.2rem;
  opacity: .6;
  line-height: 1.8;
}

.footer .info_box .txt em {
  font-size: 1.4rem;
  font-weight: 700;
}

footer .sns_box {
  display: flex;
  column-gap: 16px;
  margin-top: 30px;
}

footer .sitemap_block {
  flex-basis: 45%;
  text-align: left;
  padding-top: 25px;
}

.sitemap_box {
  text-align: left;
  display: flex;
  flex-basis: 400px;
  column-gap: 6vw;
  flex-wrap: wrap;
  margin-left: auto;
}

.sitemap_box ul {
  position: relative;
  text-align: left;
  display: flex;
  flex-basis: auto;
  flex-direction: row;
  flex-wrap: wrap;
}

.sitemap_box ul.sub {
  padding-left: 12px;
  margin: 5px 0 20px;
}

.sitemap_box ul li {
  flex-basis: 50%;
  margin-bottom: 20px;
}

.sitemap_box ul.sub li {
  margin-bottom: 2px;
}

.sitemap_box ul li a {
  font-size: 1.6rem;
  display: block;
  position: relative;
  padding-left: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.sitemap_box ul li a:hover {
  color: #F17052;
}

.sitemap_box ul.sub li a {
  font-size: 1.4rem;
  padding-left: 6px;
  font-weight: 400;
}

.sitemap_box ul > li a::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid #F17052;
  border-right: 2px solid #F17052;
  transform: rotate(45deg) translateY(-50%);
}

.sitemap_box ul.sub li a::after {
  display: none;
}

.sitemap_box ul.sub li a::before {
  content: "- ";
  position: relative;
  border: none;
}

.footer .footer_sub_block {
  row-gap: 2vw;
  display: flex;
  justify-content: space-between;
  flex-basis: 100%;
  align-items: center;
}

.footer .footer_sub_block .privacy_mark {
  width: 126px;
}

footer .copy {
  font-size: 1.0rem;
  opacity: .5;
  text-align: right;
  letter-spacing: 1px;
  font-weight: 400;
}

.footer_form .copy {
  text-align: center;
}

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

.footer_form {
  padding: 0 4% 4vw;
  background: none;
}

.footer .inner {
  padding: 7vw 6vw;
  border-radius: 12px;
  flex-wrap: wrap;
  row-gap: 8vw;
}

.footer .footer_link_block {
  border-radius: 20px;
  flex-basis: 100%;
}

.footer .flogo {
  width: 68%;
  margin: 0 0 2.5vw;
}

footer .sns_box {
  column-gap: 2%;
  margin-top: 5%;
}

footer .sns_box li {
  width: 42px;
}

footer .sitemap_block {
  display: block;
  flex-basis: 100%;
  padding-top: 0;
}

footer .sitemap_block .tel_box {
  margin: 4% 0 4%;
}

footer .sitemap_block .tel_box .tel a {
  font-size: 3rem;
}

.sitemap_box ul li a {
  font-size: 1.4rem;
}

footer .sitemap_box ul li {
  margin-bottom: 0;
}

footer .sitemap_box ul li a {
  font-size: 1.2rem;
  padding: 6px 3% 6px 20px;
}

.sitemap_box ul > li a::after {
  top: 14px;
}

.sitemap_block .cv_box {
  min-width: auto;
}

footer .sitemap_block .cv_link {
  margin-top: 4%;
}

.sitemap_block .cv_link .btn_cv:not(:last-child) {
  margin-bottom: 2%;
}

.sitemap_block .cv_box .address_box .address {
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.sitemap_block .cv_box .address_box em {
  font-size: 1.5rem;
  width: 70px;
}


.footer .footer_sub_block {
  margin-top: 0;
  row-gap: 6vw;
  flex-wrap: wrap;
}

.footer .footer_sub_block .privacy_mark {
  width: 100px;
}

footer .copy {
  font-size: 0.9rem;
}

}

/*  Pan
 *---------------------------------------------------------- */
.pan .inner {
  font-size: 11px;

  position: relative;
  z-index: 2;

  width: 980px;
  margin: 0 auto;
  padding: 10px 0 0;
}

.pan .inner a {
  text-decoration: underline;

  color: #303030;
}

.pan a:hover {
  color: #ec0000;
}

/*  Main
---------------------------------------------------------- */


/*  Table
---------------------------------------------------------- */
.tbl01 {
  font-size: 100%;

  width: 100%;

  text-align: left;

  background-size: cover;
}

.tbl01 th {
  font-weight: normal;

  width: 23%;
  padding: 20px;

  border-bottom: 1px solid #fff;
  background: #ebebf3;
}

.tbl01 td {
  line-height: 2.0;

  padding: 20px;

  word-break: break-all;

  border-bottom: 1px solid #fff;
  background: rgba(248, 248, 248, .8);
}

.tbl02 {
  width: 100%;
}

.tbl02 th {
  font-weight: normal;

  height: 40px;
  padding: 10px 15px;

  text-align: center;

  border-bottom: 1px dotted #ccc;
  background: #faf0d0;
}

.tbl02 td {
  padding: 10px 15px;

  word-break: break-all;

  border-bottom: 1px dotted #ccc;
  background: #fff;
}

.tbl02 th.un,
.tbl02 td.un {
  border-bottom: none;
}

/*  tabulous
 *---------------------------------------------------------- */
/*  tabslet
 *---------------------------------------------------------- */
 .horizontal {
  text-align: center;
  margin-bottom: 40px;
}

.horizontal li {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin-right: 26px;
}

.horizontal li:last-child {
  margin-right: 0;
}

.horizontal li strong,
.horizontal li a {
  display: block;
  border-radius: 30px;
  line-height: 50px;
  border: 1px solid rgba(80,120,204,.2);
  font-size: 1.6rem;
  color: #FF810D;
  box-sizing: border-box;
  padding: 0 30px;
}

.horizontal li strong:hover,
.horizontal li a:hover,
.horizontal li strong.active,
.horizontal li a.active {
  opacity: 1;
  background: #FF810D;
  color: #FFF;
  position: relative;
}

.horizontal li strong.active::after,
.horizontal li a.active::after {
  content: "";
  position: absolute;
  bottom: -9px;
    left: 50%;
    border-right: 8px solid transparent;
    border-top: 10px solid #FF810D;
    border-left: 8px solid transparent;
}

@media screen and (max-width: 760px) {
  .horizontal {
    text-align: center;
    margin-bottom: 8%;
  }

  .horizontal li {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-top: 4%;
  }

  .horizontal li strong,
  .horizontal li a {
    line-height: 40px;
    font-size: 1.3rem;
    padding: 0 3%;
  }

  .horizontal li strong.active::after,
  .horizontal li a.active::after {
    bottom: -8px;
  }
}

table,
ul ul,
ol ol,
td ul,
td p,
td dt,
td dd {
  font-size: 100%;
}

select,
input,
textarea,
button {
  font-size: 99%;
}

/*  Main
 *---------------------------------------------------------- */
#main {
  float: left;

  width: 700px;
  margin: 0;
}

/*  Side
 *---------------------------------------------------------- */
#side {
  float: right;

  margin: 0;
}

/* ----------------------------------------------------------

 Clear Fix

---------------------------------------------------------- */
.clearfix:after {
  display: block;
  visibility: hidden;
  clear: both;

  height: 0;

  content: ".";
}

.clearfix {
  display: inline-table;
}

/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

@media print, screen and (min-width: 761px) {
  .sp {
    display: none !important;
  }
}

@media (min-width: 761px) and (max-width: 1050px) {
  html {
    height: 100%;
  }
  .wrapper {
    overflow-x: hidden;
  }
  #topcontrol {
    display: none;
  }
  body.top {
    overflow-x: hidden;
  }
}

@media screen and (max-width: 760px) {
  /************************************************

	Font Style

************************************************/

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.0;
  }
  a {
    text-decoration: none;
  }
  .txt_s {
    font-size: 9px;

    margin: 0 0 0 5px;

    color: #808080;
  }
  /* ---------------------------
	font size
--------------------------- */
  .pan {
    display: none;
  }
  /************************************************

	Layout

************************************************/
  body {
    position: relative;
  }
  #wrapper {
    position: relative;
    z-index: 1;

    overflow: hidden;

    width: 100%;
  }
  #wrapper #wrapInner {
    position: relative;
  }
  #wrapper.open {
    position: fixed;
  }
  #contents {
    background: url(../images/cmn/bg.jpg) repeat;
  }
  /************************************************

	Contents

************************************************/
  #container {
    width: 100%;
    padding: 0px;
  }
  .pc {
    display: none !important;
  }
  /************************************************

	Main

************************************************/
  .main,
  .index_contents {
  }
  .main img {
    width: 100%;
  }
  .anchor,
  .anchor2,
  .anchor3 {
    margin-bottom: 20px;
  }
  .anchor li a,
  .anchor2 li a,
  .anchor3 li a {
    font-size: 1.1em;
    font-weight: bold;

    display: block;

    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    margin: 0 auto 5px;
    padding: 10px 0;

    text-align: center;
    text-decoration: none;

    color: #d987ad;
    border: 2px solid #d987ad;
    background: #fff none repeat scroll 0 0;
  }
  /************************************************

	Side

************************************************/
  /**************************************

Common Accordion

**************************************/
  dl.accordion {
    font-size: 100%;
  }
  dl.accordion dt {
    position: relative;

    padding: 8px 20px 8px 5px;

    border-top: 1px solid #b1b1b1;
    border-bottom: 1px solid #fff;
    background: -moz-linear-gradient(top, #fff, #e6e6e6);
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e6e6e6));
  }
  dl.accordion dt:after {
    position: absolute;
    top: 50%;
    right: 8px;

    display: block;

    width: 4px;
    height: 4px;
    margin-top: -5px;

    content: "";
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);

    border-top: 2px solid #b5a43a;
    border-right: 2px solid #b5a43a;
  }
  dl.accordion dt.open:after {
    position: absolute;
    top: 50%;
    right: 8px;

    display: block;

    width: 4px;
    height: 4px;
    margin-top: -3px;

    content: "";
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);

    border-top: 2px solid #b5a43a;
    border-right: 2px solid #b5a43a;
  }
  dl.accordion dd {
    line-height: 1.5;

    display: none;

    padding: 10px;

    background: #fff;
  }
  dl.accordion dd p {
    padding: 10px 0px 0px 0px;
  }
  #topcontrol {
    z-index: 10000;
  }
  .gsc-result .gs-title {
    height: 1.4em !important;
  }

}

/************************************************

	cookie

************************************************/

.cookie-consent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: -300px;
  width: 100%;
  font-size: 12px;
  color: #fff;
  background: rgba(0,0,0,.7);
  padding: 1.5em;
  box-sizing: border-box;
  visibility: hidden;
  z-index: 999999999;
  transition: .5s;
}
.cookie-consent.is-show {
  visibility: visible;
  bottom: 0;
}
.cookie-consent a {
  color: #fff !important;
  text-decoration: underline;
}
.cookie-agree {
  color: #333333;
  background: #FFF;
  padding: .5em 2.5em;
}
.cookie-agree:hover {
  cursor: pointer;
}
/* パッと消える */
.cc-hide1 {
  display: none;
}
/* ゆっくり消える */
.cc-hide2 {
  animation: hide 1s linear 0s;
  animation-fill-mode: forwards;
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/* メディアクエリ */
@media screen and (max-width: 600px) {
  .cookie-consent {
    flex-direction: column;
  }
  .cookie-text {
    margin-bottom: 1em;
  }
}

