/* arguments inittial */
/* site style */
/* [ writing-mode ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
.inview {
  opacity: 0;
  transition-delay: 0.2s;
  transition: transform 1.4s, opacity 1.4s;
  position: relative;
}

.inview.on {
  opacity: 1;
}

.inview.fadeInLeft {
  transform: translateX(-40px);
  -o-transform: translateX(-40px);
  -ms-transform: translateX(-40px);
  -moz-transform: translateX(-40px);
  -webkit-transform: translateX(-40px);
}

.inview.fadeInLeft.on {
  transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
}

.inview.fadeInRight {
  transform: translateX(40px);
  -o-transform: translateX(40px);
  -ms-transform: translateX(40px);
  -moz-transform: translateX(40px);
  -webkit-transform: translateX(40px);
}

.inview.fadeInRight.on {
  transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
}

.inview.fadeInBottom {
  opacity: 0;
  transform: translateY(40px);
  -o-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -webkit-transform: translateY(40px);
}

.inview.fadeInBottom.on {
  opacity: 1;
  transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
}

.inview.fadeInBottomDelay {
  transform: translateY(40px);
  -o-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -webkit-transform: translateY(40px);
  transition-delay: 0.3s;
}

.inview.fadeInBottomDelay.on {
  transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
}

.inview.fadeInTop {
  transform: translateY(-40px);
  -o-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -webkit-transform: translateY(-40px);
}

.inview.fadeInTop.on {
  transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
}

.inview.fadeIn.on {
  opacity: 1;
}

.inview.fadeInZoom img {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0;
  will-change: transform, opacity;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.inview.fadeInZoom.on {
  opacity: 1;
}

.inview.fadeInZoom.on img {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

@keyframes waving {
  0% {
    background-image: url(../img/common/ft_human01.png);
  }

  50% {
    background-image: url(../img/common/ft_human02.png);
  }

  100% {
    background-image: url(../img/common/ft_human01.png);
  }
}

@keyframes wavingMenu {
  0% {
    background-image: url(../img/common/menu_human01.png);
  }

  50% {
    background-image: url(../img/common/menu_human02.png);
  }

  100% {
    background-image: url(../img/common/menu_human01.png);
  }
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes spinning {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes swipingBg {
  0% {
    right: 100%;
  }

  50% {
    right: 0;
  }

  100% {
    right: -100%;
  }
}

/*-----------------------------------------------------------
clearfix
------------------------------------------------------------*/
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/*-----------------------------------------------------------
reset
------------------------------------------------------------*/
p {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
  resize: none;
}

input[type="text"],
input[type="date"],
input[type="email"],
input[type="number"],
input[type="url"] {
  word-break: normal;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

dl,
dt,
dd,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-size: 100%;*/
  font-weight: normal;
  margin: 0;
  padding: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
dialog {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

img {
  margin: 0;
  padding: 0;
  vertical-align: middle;
  border: 0;
  max-width: 100%;
  height: auto;
}

table img {
  margin: 0;
  padding: 0;
  vertical-align: middle;
  border: 0;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:focus {
  outline: none !important;
}

label,
select,
button {
  cursor: pointer;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

/*-----------------------------------------------------------
Link
------------------------------------------------------------*/
a {
  outline: none;
  transition: opacity 0.3s;
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  a:hover {
    opacity: 0.5;
  }
}

a:link,
a:visited,
a:active {
  color: #000;
  text-decoration: none;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*-----------------------------------------------------------
Body
-------------------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html.is-ipad * {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.33333em;
  letter-spacing: 0.1em;
  font-weight: 700;
  word-break: break-word;
  color: #000;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

#wrap {
  display: block;
}

/*-----------------------------------------------------------
COMMON
-------------------------------------------------------------*/
.inner {
  max-width: 1226px;
  padding: 0 20px;
  margin: 0 auto;
}

@media (min-width: 768px) {

  .sp,
  .SP {
    display: none !important;
  }
}

@media (max-width: 767px) {

  .pc,
  .PC {
    display: none !important;
  }
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 0 20px;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px auto;
}

.alignleft {
  float: left;
  margin: 5px auto 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px auto;
}

a img.alignnone {
  margin: 5px 0 20px;
}

a img.alignleft {
  float: left;
  margin: 5px auto 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 0 20px;
}

.wp-caption.alignleft {
  margin: 5px auto 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px auto;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.wp-video {
  max-width: 100%;
  margin-bottom: 40px;
}

.wp-video video {
  max-width: 100%;
  height: auto;
}

.cms-content {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  word-wrap: break-word;
}

.cms-content::after {
  content: "";
  clear: both;
  display: table;
}

.cms-content *:last-child {
  margin-bottom: 0;
}

.cms-content ul,
.cms-content ol {
  margin-bottom: 37px;
}

.cms-content ul[style*="list-style-type: circle;"] li {
  list-style-type: circle;
}

.cms-content ul[style*="list-style-type: square;"] li {
  list-style-type: square;
}

.cms-content ul li {
  list-style: none;
  position: relative;
  padding-left: 32px;
}

@media (max-width: 767px) {
  .cms-content ul li {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2.28571em;
    letter-spacing: 0.1em;
    padding-left: 26px;
  }
}

.cms-content ul li::before {
  content: "";
  width: 15px;
  height: 7px;
  background-color: #fe7a38;
  position: absolute;
  top: 19px;
  left: 7px;
}

@media (max-width: 767px) {
  .cms-content ul li::before {
    top: 14px;
    left: 5px;
    width: 14px;
    height: 4px;
  }
}

.cms-content ol[style*="list-style-type: lower-roman;"] li {
  list-style-type: lower-roman;
}

.cms-content ol[style*="list-style-type: lower-alpha;"] li {
  list-style-type: lower-alpha;
}

.cms-content ol[style*="list-style-type: lower-greek;"] li {
  list-style-type: lower-greek;
}

.cms-content ol[style*="list-style-type: upper-alpha;"] li {
  list-style-type: upper-alpha;
}

.cms-content ol[style*="list-style-type: upper-roman;"] li {
  list-style-type: upper-roman;
}

.cms-content ol li {
  list-style-type: decimal;
}

@media (max-width: 767px) {
  .cms-content ol li {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2.28571em;
    letter-spacing: 0.1em;
  }
}

.cms-content p {
  margin-bottom: 37px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .cms-content p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2.28571em;
    letter-spacing: 0.1em;
    margin-bottom: 27px;
  }
}

.cms-content p img {
  will-change: transform;
  transition: 0.8s all ease-in-out;
  transform: scale(1.1);
}

.cms-content p img.on {
  transform: scale(1);
}

.cms-content u,
.cms-content span[style*="text-decoration: underline"],
.cms-content span[style*="text-decoration:underline"] {
  display: inline-block;
  position: relative;
  opacity: 1;
  z-index: 1;
  text-decoration: none !important;
}

.cms-content u::after,
.cms-content span[style*="text-decoration: underline"]::after,
.cms-content span[style*="text-decoration:underline"]::after {
  content: "";
  width: 0;
  height: 30px;
  background-color: #fef25e;
  position: absolute;
  top: 52%;
  left: -5px;
  transform: translateY(-50%);
  transition: 0.5s all ease-in-out;
  transition-delay: 1s;
  z-index: -1;
}

@media (max-width: 767px) {

  .cms-content u::after,
  .cms-content span[style*="text-decoration: underline"]::after,
  .cms-content span[style*="text-decoration:underline"]::after {
    height: 25px;
  }
}

.cms-content u.on::after,
.cms-content span[style*="text-decoration: underline"].on::after,
.cms-content span[style*="text-decoration:underline"].on::after {
  width: calc(100% + 10px);
}

.cms-content h2 {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.4em;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 15px;
  margin-bottom: 48px;
}

@media (max-width: 767px) {
  .cms-content h2 {
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 1.3913em;
    letter-spacing: 0.08em;
    padding-left: 12px;
    margin-bottom: 28px;
  }
}

.cms-content h2::before {
  content: "";
  width: 2px;
  height: calc(100% - 17px);
  background-color: #fe7a38;
  position: absolute;
  top: 11px;
  left: 0;
}

@media (max-width: 767px) {
  .cms-content h2::before {
    height: calc(100% - 14px);
    top: 9px;
  }
}

.cms-content ul+h2 {
  margin-top: 89px;
}

@media (max-width: 767px) {
  .cms-content ul+h2 {
    margin-top: 65px;
  }
}

.cms-content h3 {
  background-color: #fe7a38;
  color: #fff;
  width: fit-content;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4em;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 5px 15px 4px;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .cms-content h3 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.33333em;
    letter-spacing: 0.1em;
    padding: 4px 12px 5px;
    margin-bottom: 25px;
  }
}

.cms-content iframe {
  max-width: 100% !important;
}

.cms-content img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  width: auto;
}

.cms-content table {
  table-layout: fixed;
  border: 1px solid #000;
  margin-bottom: 40px;
}

.cms-content table td,
.cms-content table th {
  border: 1px solid #000;
}

.c-img {
  display: block;
  position: relative;
}

.c-img img {
  display: block;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.c-img--contain img {
  object-fit: contain;
}

.c-img--top img {
  object-position: top;
}

.c-fw {
  width: 100%;
}

[rel~="js-lazy"] {
  opacity: 0;
}

[rel~="js-lazy"]:not(.initial) {
  transition: opacity 0.15s;
}

[rel~="js-lazy"].initial,
[rel~="js-lazy"].loaded,
[rel~="js-lazy"].error {
  opacity: 1;
}

.c-lazybg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.c-lazybg--top {
  background-position: center top;
}

.c-lazybg--contain {
  background-size: contain;
}

.c-btn {
  display: flex;
  align-items: center;
  width: fit-content;
  cursor: pointer;
}

.c-btn span {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.44444em;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 57px;
}

@media (max-width: 767px) {
  .c-btn span {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5em;
    margin-right: 49px;
  }
}

.c-btn i {
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 1px solid #262626;
  border-radius: 50%;
  background: url(../img/common/icon/ico-triarr-right_black.svg) no-repeat center;
  position: relative;
}

@media (max-width: 767px) {
  .c-btn i {
    width: 48px;
    height: 48px;
  }
}

.c-btn i::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 100%;
  transition: 0.3s all ease-in-out;
  z-index: 1;
}

@media (max-width: 767px) {
  .c-btn i::before {
    width: 32px;
  }
}

@media only screen and (min-width: 1025px) {
  .c-btn:hover {
    opacity: 1;
  }

  .c-btn:hover i {
    border-color: #fe7a38;
    background-color: #fe7a38;
    background-image: url(../img/common/icon/ico-triarr-right_white.svg);
  }

  .c-btn:hover i::before {
    right: calc(100% - 12px);
  }
}

.c-swipe-txt span {
  display: block;
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.c-swipe-txt span::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: currentColor;
  position: absolute;
  top: 0;
  transition: opacity 2s;
  transition-delay: 2.3s;
}

@media (max-width: 767px) {
  .c-swipe-txt span::after {
    height: calc(100% - 5px);
    top: 50%;
    transform: translateY(-50%);
  }
}

.c-swipe-txt span small {
  opacity: 0;
  transition: 0.5s all ease-in-out;
  transition-delay: 1.3s;
}

.c-swipe-txt span:nth-child(2)::after {
  transition-delay: 2.8s;
}

.c-swipe-txt span:nth-child(2) small {
  transition-delay: 2.3s;
}

.c-swipe-txt.on span::after {
  animation: swipingBg 0.8s ease-in-out 0.8s;
  opacity: 0;
}

.c-swipe-txt.on span small {
  opacity: 1;
}

.c-swipe-txt.on span:nth-child(2)::after {
  animation: swipingBg 0.8s ease-in-out 1.8s;
}

.c-highlight {
  display: inline-block;
  position: relative;
  opacity: 1;
  z-index: 1;
}

.c-highlight::after {
  content: "";
  width: 0;
  height: 30px;
  background-color: #fef25e;
  position: absolute;
  top: 52%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.5s all ease-in-out;
  transition-delay: 2s;
  z-index: -1;
}

@media (max-width: 767px) {
  .c-highlight::after {
    height: 25px;
  }
}

.c-highlight.on::after {
  width: 100%;
}

.cmn-head {
  width: 100%;
}

.cmn-head__ins {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 767px) {
  .cmn-head__ins {
    flex-direction: column;
    width: 100%;
  }
}

.cmn-head__title {
  width: 100%;
  background-color: #fe7a38;
  position: relative;
}

.cmn-head__title:before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 30.76923%;
}

.cmn-head__title>.content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media only screen and (min-width: 1500px) {
  .cmn-head__title {
    position: relative;
  }

  .cmn-head__title:before {
    display: block;
    content: " ";
    width: 100%;
    padding-top: 23.52941%;
  }

  .cmn-head__title>.content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .cmn-head__title {
    position: relative;
  }

  .cmn-head__title:before {
    display: block;
    content: " ";
    width: 100%;
    padding-top: 51.79487%;
  }

  .cmn-head__title>.content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.cmn-head__title .txt_rel {
  position: absolute;
  padding-left: 55px;
  padding-bottom: 30px;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .cmn-head__title .txt_rel {
    padding-bottom: 51px;
    padding-left: 22px;
  }
}

.cmn-head__title .en {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-bottom: 3px;
}

@media (max-width: 767px) {
  .cmn-head__title .en {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1em;
    margin-bottom: 0;
  }
}

.cmn-head__title .jp {
  font-size: 38px;
  font-size: 3.8rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 767px) {
  .cmn-head__title .jp {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.cmn-head__img {
  right: 0;
  left: auto;
  width: calc(623 / 1300 * 100%);
  position: relative;
  bottom: 0;
  transform: translateY(0%);
  overflow: hidden;
}

@media (max-width: 767px) {
  .cmn-head__img {
    height: auto;
    right: 25px;
    transform: translateY(-40px);
    width: calc(253 / 390 * 100%);
    bottom: auto;
    z-index: 3;
  }
}

.cmn-head__img img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.4s ease-in-out;
}

@media (max-width: 767px) {
  .cmn-head__img img {
    position: relative;
  }
}

.cmn-head__img.on img {
  transform: scale(1.1);
  transition-delay: 1.4s;
}

.cmn-head .txt_abs {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: -60px;
  left: 50px;
  transform: translateY(100%);
  opacity: 1;
  width: fit-content;
  z-index: 1;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cmn-head .txt_abs img {
    transform: translateY(0%);
  }
}

@media (max-width: 767px) {
  .cmn-head .txt_abs {
    max-width: 100px;
    bottom: -29px;
    left: 23px;
  }
}

.sec-point {
  padding: 120px 0 120px;
}

@media (max-width: 767px) {
  .sec-point {
    padding: 78px 0 80px;
  }
}

.sec-point .block-ttl .jp {
  color: #5488cc;
}

.sec-point .point-lst {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 36px;
  counter-reset: cntPoint;
  position: relative;
  max-width: 1038px;
  margin: 51px auto 0;
}

@media only screen and (min-width: 768px) and (max-width: 1029px) {
  .sec-point .point-lst {
    grid-gap: 25px;
  }
}

@media (max-width: 767px) {
  .sec-point .point-lst {
    grid-template-columns: 100%;
    grid-gap: 49px;
    margin: 44px 30px 0;
  }
}

.sec-point .point-lst__item {
  background-color: #fff;
  counter-increment: cntPoint;
  padding: 43px 25px 11px;
}

@media (max-width: 767px) {
  .sec-point .point-lst__item {
    padding: 38px 23px 0;
  }
}

.sec-point .point-lst__item::before {
  content: counter(cntPoint, decimal-leading-zero);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 0.6875em;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  border-radius: 50%;
  background-color: #5488cc;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .sec-point .point-lst__item::before {
    font-size: 14px;
    font-size: 1.4rem;
    width: 36px;
    height: 36px;
  }
}

.sec-point .point-lst__item .bubble {
  border-radius: 21px;
  background-color: #fef25e;
  text-align: center;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.17647em;
  letter-spacing: 0em;
  font-weight: 700;
  color: #5488cc;
  position: relative;
  padding: 11px 10px 10px;
}

@media (max-width: 767px) {
  .sec-point .point-lst__item .bubble {
    font-size: 15px;
    font-size: 1.5rem;
    padding-top: 10px;
  }
}

@media only screen and (max-width: 767px) and (max-width: 767px) {
  .sec-point .point-lst__item .bubble {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.sec-point .point-lst__item .bubble::after {
  content: "";
  width: 17px;
  height: 15px;
  background-color: #fef25e;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .sec-point .point-lst__item .bubble::after {
    width: 15px;
    height: 13px;
  }
}

.sec-point .point-lst__item .ttl {
  width: fit-content;
  padding-bottom: 5px;
  margin: 22px auto 15px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2em;
  letter-spacing: 0em;
  font-weight: 700;
  position: relative;
}

@media (max-width: 767px) {
  .sec-point .point-lst__item .ttl {
    font-size: 17px;
    font-size: 1.7rem;
    margin: 20px auto 13px;
  }
}

.sec-point .point-lst__item .ttl::after {
  content: "";
  width: calc(100% - 4px);
  height: 1px;
  background-color: rgba(84, 136, 204, 0.5);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .sec-point .point-lst__item .ttl::after {
    width: 100%;
  }
}

.sec-point .point-lst__item .txt {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125em;
  letter-spacing: 0em;
  font-weight: 700;
}

@media (max-width: 767px) {
  .sec-point .point-lst__item .txt {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.78571em;
  }
}

.sec-point .point-lst__item .vector {
  text-align: center;
}

.sec-point .point-lst__item .vector svg {
  max-width: 100%;
}

.sec-point .point-lst__item .vector svg * {
  clip-path: none !important;
}

@media (min-width: 768px) {
  .sec-point .point-lst__item:nth-child(1) .bubble {
    transition-delay: 0.4s;
  }
}

@media (min-width: 768px) {
  .sec-point .point-lst__item:nth-child(1) .vector {
    margin-top: 6px;
    transition-delay: 0.4s;
  }
}

@media (max-width: 767px) {
  .sec-point .point-lst__item:nth-child(1) .vector {
    margin: 2px 21px 0;
  }
}

.sec-point .point-lst__item:nth-child(1) #ico-anim01,
.sec-point .point-lst__item:nth-child(1) #ico-anim02 {
  animation: floating 2s infinite;
}

@media (min-width: 768px) {
  .sec-point .point-lst__item:nth-child(2) {
    transition-delay: 1s;
  }
}

@media (min-width: 768px) {
  .sec-point .point-lst__item:nth-child(2) .bubble {
    transition-delay: 1.4s;
  }
}

@media (min-width: 768px) {
  .sec-point .point-lst__item:nth-child(2) .vector {
    margin-top: 14px;
    transition-delay: 1.4s;
  }
}

@media (max-width: 767px) {
  .sec-point .point-lst__item:nth-child(2) .vector {
    margin: 9px 20px 0;
  }
}

.sec-point .point-lst__item:nth-child(2) #ico-anim03 {
  animation: spinning 4s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}

@media (min-width: 768px) {
  .sec-point .point-lst__item:nth-child(3) {
    transition-delay: 2s;
  }
}

@media (min-width: 768px) {
  .sec-point .point-lst__item:nth-child(3) .bubble {
    transition-delay: 2.4s;
  }
}

@media (min-width: 768px) {
  .sec-point .point-lst__item:nth-child(3) .vector {
    margin-top: 14px;
    transition-delay: 2.4s;
  }
}

@media (max-width: 767px) {
  .sec-point .point-lst__item:nth-child(3) .vector {
    margin: 10px 39px 13px;
  }
}

.sec-point .point-lst__item:nth-child(3) #ico-anim04 {
  animation: spinning 4s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.sec-point .point-lst__item:nth-child(3) #ico-anim05 {
  animation: floating 2s infinite;
}

.sec-service {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 119px 0 160px;
}

@media (max-width: 767px) {
  .sec-service {
    padding: 76px 0 80px;
  }
}

.sec-service .inner {
  max-width: 1072px;
}

.sec-service::after {
  content: "";
  width: 100%;
  height: 662px;
  background: linear-gradient(to top, #fe7a38, #faf8f2);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 767px) {
  .sec-service::after {
    height: 948px;
  }
}

@media (max-width: 767px) {
  .sec-service .block-ttl {
    text-align: center;
  }

  .sec-service .block-ttl .jp {
    margin: 0 auto -3px;
  }

  .sec-service .block-ttl .en {
    margin: 0;
  }
}

.sec-service .block-ttl .jp {
  color: #5488cc;
}

.sec-service .bgWhite {
  background-color: #fff;
  padding: 53px 50px 44px;
  margin: 30px auto 0;
  max-width: 950px;
}

@media only screen and (min-width: 768px) and (max-width: 1123px) {
  .sec-service .bgWhite {
    padding: 35px 35px 60px;
  }
}

@media (max-width: 767px) {
  .sec-service .bgWhite {
    padding: 42px 15px 68px;
    margin: 26px 12px 0;
  }
}

.sec-service .bgWhite .block-item {
  margin-bottom: 1px;
}

.sec-service .bgWhite .block-item .ttl {
  margin-bottom: 19px;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .sec-service .bgWhite .block-item .ttl {
    flex-direction: column;
    margin-bottom: 14px;
  }
}

.sec-service .bgWhite .block-item .ttl .main {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.25em;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media (min-width: 768px) {
  .sec-service .bgWhite .block-item .ttl .main {
    margin-bottom: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .sec-service .bgWhite .block-item .ttl .main {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .sec-service .bgWhite .block-item .ttl .main {
    font-size: 18px;
    font-size: 1.8rem;
    display: block;
    margin: 0 auto;
  }
}

.sec-service .bgWhite .block-item .ttl .bubble {
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25em;
  letter-spacing: 0.1em;
  font-weight: 700;
  background-color: #f4efe2;
  border-radius: 5px;
  padding: 12px 21px 12px;
  position: relative;
  color: #000;
  margin-left: 31px;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .sec-service .bgWhite .block-item .ttl .bubble {
    font-size: 15px;
    font-size: 1.5rem;
    padding: 12px 10px 11px;
  }
}

@media (max-width: 767px) {
  .sec-service .bgWhite .block-item .ttl .bubble {
    width: max-content;
    font-size: 13px;
    font-size: 1.3rem;
    margin: 16px auto 0;
    transform: none;
    display: block;
    padding: 10px 21px 10px;
  }
}

@media only screen and (max-width: 767px) and (max-width: 374px) {
  .sec-service .bgWhite .block-item .ttl .bubble {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.sec-service .bgWhite .block-item .ttl .bubble::before {
  content: "";
  width: 15px;
  height: 11px;
  background-color: #f4efe2;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
  position: absolute;
  left: -13px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .sec-service .bgWhite .block-item .ttl .bubble::before {
    width: 13px;
    height: 9px;
    transform: rotate(90deg) translateX(-50%);
    top: -2px;
    left: 48%;
  }
}

@media (min-width: 768px) {
  .sec-service .bgWhite .block-item .lst-serv {
    padding-bottom: 32.5px;
  }

  .sec-service .bgWhite .block-item .lst-serv--tripCol {
    display: grid;
    grid-template-columns: 28.9% 34.7% auto;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
  }
}

@media (max-width: 767px) {
  .sec-service .bgWhite .block-item .lst-serv {
    padding: 0 12px 24px;
  }
}

.sec-service .bgWhite .block-item .lst-serv__item {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.27778em;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding-left: 23px;
  padding-right: 10px;
  margin-bottom: 21px;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .sec-service .bgWhite .block-item .lst-serv__item {
    font-size: 16px;
    font-size: 1.6rem;
    padding-left: 18px;
  }
}

@media (max-width: 767px) {
  .sec-service .bgWhite .block-item .lst-serv__item {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.46667em;
    padding-left: 20px;
    margin-bottom: 16px;
  }
}

.sec-service .bgWhite .block-item:nth-child(1) {
  color: #5488cc;
}

.sec-service .bgWhite .block-item:nth-child(1) .lst-serv__item {
  background: url(../img/common/icon/ico-carr-right_blue.svg) no-repeat left top 6px;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .sec-service .bgWhite .block-item:nth-child(1) .lst-serv__item {
    background-position: left top 5px;
  }
}

@media (max-width: 767px) {
  .sec-service .bgWhite .block-item:nth-child(1) .lst-serv__item {
    background-size: 11px 11px;
  }
}

.sec-service .bgWhite .block-item:nth-child(1) .lst-serv__item a {
  color: #5488cc;
}

.sec-service .bgWhite .block-item:nth-child(2) {
  color: #cbac31;
}

.sec-service .bgWhite .block-item:nth-child(2) .lst-serv__item {
  background: url(../img/common/icon/ico-carr-right_yellow.svg) no-repeat left top 6px;
}

@media (max-width: 767px) {
  .sec-service .bgWhite .block-item:nth-child(2) .lst-serv__item {
    background-size: 11px 11px;
  }
}

.sec-service .bgWhite .block-item:nth-child(2) .lst-serv__item a {
  color: #cbac31;
}

.sec-service .bgWhite .block-item:nth-child(3) {
  color: #fe7a38;
}

.sec-service .bgWhite .block-item:nth-child(3) .lst-serv__item {
  background: url(../img/common/icon/ico-carr-right_orange.svg) no-repeat left top 6px;
}

@media (max-width: 767px) {
  .sec-service .bgWhite .block-item:nth-child(3) .lst-serv__item {
    background-size: 11px 11px;
  }
}

.sec-service .bgWhite .block-item:nth-child(3) .lst-serv__item a {
  color: #fe7a38;
}

.sec-service .bgWhite .media-block {
  display: flex;
  justify-content: space-between;
  margin-right: 14px;
  margin-top: -99px;
}

@media only screen and (min-width: 768px) and (max-width: 900px) {
  .sec-service .bgWhite .media-block {
    margin-top: -40px;
  }
}

@media (max-width: 767px) {
  .sec-service .bgWhite .media-block {
    position: relative;
    flex-direction: column;
    margin: 0;
    padding-bottom: 76px;
  }
}

.sec-service .bgWhite .media-block__cont {
  flex: 1;
  padding-right: 25px;
  padding-top: 68px;
}

@media only screen and (min-width: 768px) and (max-width: 900px) {
  .sec-service .bgWhite .media-block__cont {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .sec-service .bgWhite .media-block__cont {
    padding: 0;
    text-align: center;
  }
}

.sec-service .bgWhite .media-block__cont .txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.1875em;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media (max-width: 767px) {
  .sec-service .bgWhite .media-block__cont .txt {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2em;
  }
}

@media only screen and (max-width: 767px) and (max-width: 374px) {
  .sec-service .bgWhite .media-block__cont .txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.sec-service .bgWhite .media-block__cont .txt .highlight {
  padding: 0;
}

.sec-service .bgWhite .media-block__cont .btn {
  margin: 29px 0 0 5px;
  padding: 22px 22px 19px 80px;
  max-width: 453px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: url(../img/top/ico-carr-right_white.svg) no-repeat left 20px center, linear-gradient(135deg, #e2c800, #fe7a38);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.15385em;
  letter-spacing: 0em;
  font-weight: 700;
  color: #fff;
  transition: 0.3s all ease-in-out;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 920px) {
  .sec-service .bgWhite .media-block__cont .btn {
    font-size: 20px;
    font-size: 2rem;
    padding: 20px 18px 16px 70px;
    background: url(../img/top/ico-carr-right_white.svg) no-repeat left 10px center, linear-gradient(to bottom right, #e2c800, #fe7a38);
  }
}

@media only screen and (min-width: 1025px) {
  .sec-service .bgWhite .media-block__cont .btn:hover {
    opacity: 1;
  }

  .sec-service .bgWhite .media-block__cont .btn:hover::after {
    opacity: 1;
    left: 100%;
  }
}

@media (max-width: 767px) {
  .sec-service .bgWhite .media-block__cont .btn {
    background: url(../img/top/ico-carr-right_white.svg) no-repeat left 12px center/33px 33px, linear-gradient(to bottom right, #e2c800, #fe7a38);
    max-width: 279px;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-size: 1.6rem;
    width: 100%;
    padding: 15px 5px 9px 42px;
  }
}

.sec-service .bgWhite .media-block__cont .btn::after {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
  width: 50%;
  height: 150px;
  top: calc(50% - 75px);
  left: -100%;
  z-index: 1;
  opacity: 0;
  transform: skewX(-50deg);
  transition: 2s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.sec-service .bgWhite .media-block__cont .btn span {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4em;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media (max-width: 767px) {
  .sec-service .bgWhite .media-block__cont .btn span {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.8em;
  }
}

@media (min-width: 768px) {
  .sec-service .bgWhite .media-block__img {
    width: 41%;
    max-width: 338px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 773px) {
  .sec-service .bgWhite .media-block__img {
    width: 40%;
  }
}

@media (max-width: 767px) {
  .sec-service .bgWhite .media-block__img {
    margin: 19px 24px 0;
  }
}

.sec-service .bgWhite .media-block__img img {
  width: 100%;
}

.sec-service .bgWhite .media-block__img .desc {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.21429em;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin: 13px 0 0 18px;
}

@media (max-width: 767px) {
  .sec-service .bgWhite .media-block__img .desc {
    font-size: 10px;
    font-size: 1rem;
    text-align: center;
    margin: 11px 0 0;
  }
}

@media (min-width: 768px) {
  .sec-service.p-child .block-ttl .jp {
    font-size: 38px;
    font-size: 3.8rem;
  }

  .sec-service.p-child .block-ttl .en {
    margin-left: 5px;
  }
}

.footer {
  color: #fff;
  padding: 29px 0 34px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .footer {
    padding: 37px 0 48px;
  }

  .footer.notContact {
    padding-bottom: 80px;
  }
}

.footer::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fe7a38;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.footer .inner {
  max-width: 1196px;
  position: relative;
}

.footer .greeting {
  position: absolute;
  bottom: calc(100% + 29px);
  left: 41px;
  z-index: -1;
}

@media (max-width: 767px) {
  .footer .greeting {
    bottom: calc(100% + 36px);
    left: 20px;
  }
}

.footer .greeting__txt {
  color: #fff;
  background-color: #fe7a38;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 13px 10px 14px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.36364em;
  letter-spacing: 0.05em;
  font-weight: 600;
  width: 119px;
  margin-bottom: 18px;
  margin-left: 4px;
  transform: scale(0);
  transition: 0.5s all ease-in-out;
  transition-delay: 1.2s;
}

@media (max-width: 767px) {
  .footer .greeting__txt {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.4em;
    width: 90px;
    padding: 8px 10px 8px;
    margin-bottom: 13px;
    margin-left: 3px;
  }
}

.footer .greeting__txt::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fe7a38;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .footer .greeting__txt::after {
    width: 7px;
    height: 8px;
    bottom: -7px;
  }
}

.footer .greeting__img {
  width: 128px;
  height: 139px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/common/ft_human01.png);
}

@media (max-width: 767px) {
  .footer .greeting__img {
    width: 78px;
    height: 86px;
  }
}

.footer .greeting.on .greeting__txt {
  transform: scale(1);
}

.footer .greeting.animating .greeting__img {
  animation: waving 0.8s ease-in-out infinite;
}

.footer .nav-lst {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin-left: auto;
  margin-right: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .footer .nav-lst {
    max-width: 515px;
  }
}

@media (max-width: 767px) {
  .footer .nav-lst {
    justify-content: center;
    margin: 0 36px;
  }
}

@media only screen and (max-width: 767px) and (max-width: 389px) {
  .footer .nav-lst {
    margin: 0 25px;
  }
}

.footer .nav-lst__item {
  margin-bottom: 3px;
  margin-left: 29px;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .footer .nav-lst__item {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .footer .nav-lst__item {
    margin: 0 0 -7px;
    width: calc(100% / 3);
    text-align: center;
  }
}

.footer .nav-lst__item a {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.0625em;
  letter-spacing: 0.05em;
  font-weight: 600;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .footer .nav-lst__item a {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .footer .nav-lst__item a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.footer .info {
  margin: 54px 0 0 24px;
}

@media (min-width: 768px) {
  .footer .info {
    float: left;
    margin: -65px 20px 20px 0;
  }
}

.footer .info .logo {
  display: block;
  width: fit-content;
}

@media (max-width: 767px) {
  .footer .info .logo img {
    width: 93px;
  }
}

.footer .info .compname,
.footer .info .loc {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.36842em;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media (max-width: 767px) {

  .footer .info .compname,
  .footer .info .loc {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.4em;
  }
}

.footer .info .compname {
  margin: 21px 0 15px;
}

@media (max-width: 767px) {
  .footer .info .compname {
    margin: 17px 0 10px;
  }
}

.footer .info .loc {
  padding: 5px 0 5px 37px;
  background: url(../img/common/icon/ico-pin_white.svg) no-repeat left 3px center;
}

@media (max-width: 767px) {
  .footer .info .loc {
    padding-left: 31px;
    background-size: 18px 26px;
  }
}

.footer .other-link {
  margin: 20px 0 15px auto;
  width: fit-content;
}

@media (max-width: 767px) {
  .footer .other-link {
    margin: 46px 17px 15px auto;
  }
}

.footer .other-link__item:not(:last-child) {
  margin-bottom: 13px;
}

.footer .other-link__item a {
  display: block;
  text-align: right;
  color: #fff;
  padding-right: 35px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857em;
  letter-spacing: 0.05em;
  font-weight: 600;
  background: url(../img/common/icon/ico-window.svg) no-repeat right 3px top 1px;
}

.footer .copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.21429em;
  letter-spacing: 0.05em;
  font-weight: 600;
  width: fit-content;
  margin-left: auto;
}

@media (max-width: 767px) {
  .footer .copyright {
    margin-right: auto;
  }
}

.footer .marquee {
  pointer-events: none;
  margin-top: 59px;
}

@media (max-width: 767px) {
  .footer .marquee {
    margin-top: 53px;
  }
}

.footer .marquee .swiper-wrapper {
  transition-timing-function: linear;
}

.footer .marquee .swiper-slide {
  width: 321px;
}

@media (max-width: 767px) {
  .footer .marquee .swiper-slide {
    width: 220px;
  }
}

.header {
  position: fixed;
  left: auto;
  top: auto;
  z-index: 1000;
  width: 100%;
  padding: 37px 51px;
  transition: 0.3s all ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .header {
    padding: 15px 29px;
  }
}

@media (max-width: 767px) {
  .header {
    padding: 17px 18px;
  }
}

.header .inHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.header .inHeader #logo {
  margin: 0 0 -10px 6px;
  transition: 0.3s all ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .header .inHeader #logo {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .header .inHeader #logo {
    margin: 0;
  }
}

.header .inHeader #logo a img {
  display: block;
}

@media (max-width: 767px) {
  .header .inHeader #logo a img {
    width: 67px;
  }
}

.header .inHeader #logo a img.logo-black {
  display: none;
}

@media (max-width: 767px) {
  .header .inHeader .layerMenu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    transition: 0.3s all ease-in-out;
  }
}

.header .inHeader .layerMenu .overlayer {
  flex: 1;
  background-color: rgba(254, 122, 56, 0.5);
}

@media (max-width: 767px) {
  .header .inHeader .layerMenu .wrapper {
    width: 74.6%;
    max-width: 450px;
    height: 100%;
    background-color: #f1f0e4;
    padding: 90px 0 90px;
  }
}

.header .inHeader .layerMenu .inLayer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 767px) {
  .header .inHeader .layerMenu .inLayer {
    padding: 0 35px;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -moz-overflow-scrolling: touch;
    -ms-overflow-scrolling: touch;
    -o-overflow-scrolling: touch;
    overflow-scrolling: touch;
    -ms-overflow-style: none;
    -ms-scrollbar-width: none;
    overflow: auto;
    scrollbar-width: none;
  }

  .header .inHeader .layerMenu .inLayer::-webkit-scrollbar {
    display: none;
  }
}

.header .inHeader .layerMenu .inLayer .gNavi {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 26px;
  margin-bottom: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .header .inHeader .layerMenu .inLayer .gNavi {
    margin-right: 12px;
  }
}

@media (max-width: 767px) {
  .header .inHeader .layerMenu .inLayer .gNavi {
    flex-direction: column;
    margin: 0 0 17px;
  }
}

.header .inHeader .layerMenu .inLayer .gNavi__item {
  line-height: 1;
  margin-left: 29px;
  padding-bottom: 10px;
  position: relative;
  cursor: pointer;
  cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .header .inHeader .layerMenu .inLayer .gNavi__item {
    margin-left: 15px;
  }
}

@media (max-width: 767px) {
  .header .inHeader .layerMenu .inLayer .gNavi__item {
    margin: 0 0 25.3px;
    padding-bottom: 0;
  }

  .header .inHeader .layerMenu .inLayer .gNavi__item:last-child {
    margin-bottom: 0;
  }
}

.header .inHeader .layerMenu .inLayer .gNavi__item .label {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.0625em;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: 0.3s all ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .header .inHeader .layerMenu .inLayer .gNavi__item .label {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .header .inHeader .layerMenu .inLayer .gNavi__item .label {
    color: #000;
  }
}

.header .inHeader .layerMenu .inLayer .gNavi__item .bubble {
  background-color: #fff;
  border-radius: 5px;
  padding: 8px 10px 7px;
  text-align: center;
  color: #080808;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.36364em;
  letter-spacing: 0.05em;
  font-weight: 600;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  width: 137px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all ease-in-out;
}

.header .inHeader .layerMenu .inLayer .gNavi__item .bubble::before {
  content: "";
  width: 11px;
  height: 12px;
  background-color: #fff;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (min-width: 1025px) {
  .header .inHeader .layerMenu .inLayer .gNavi__item:hover .label {
    opacity: 1;
  }

  .header .inHeader .layerMenu .inLayer .gNavi__item:hover .bubble {
    opacity: 1;
    pointer-events: auto;
  }
}

.header .inHeader .layerMenu .inLayer .circle-btn {
  display: flex;
}

@media (max-width: 767px) {
  .header .inHeader .layerMenu .inLayer .circle-btn {
    margin-bottom: 11px;
  }
}

.header .inHeader .layerMenu .inLayer .circle-btn__item:not(:last-child) {
  margin-right: 9px;
}

.header .inHeader .layerMenu .inLayer .circle-btn__item a {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.21429em;
  letter-spacing: 0.05em;
  font-weight: 600;
  border-radius: 50%;
  width: 76px;
  height: 76px;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .header .inHeader .layerMenu .inLayer .circle-btn__item a {
    font-size: 12px;
    font-size: 1.2rem;
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 767px) {
  .header .inHeader .layerMenu .inLayer .circle-btn__item a {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.25em;
  }
}

.header .inHeader .layerMenu .inLayer .circle-btn__item:nth-child(1) a {
  background: #707070 url(../img/common/icon/ico-dl.svg) no-repeat center top 10px;
  color: #fff;
  padding-bottom: 12px;
}

@media (max-width: 767px) {
  .header .inHeader .layerMenu .inLayer .circle-btn__item:nth-child(1) a {
    padding-bottom: 15px;
  }
}

.header .inHeader .layerMenu .inLayer .circle-btn__item:nth-child(2) a {
  background: #f1f0e4 url(../img/common/icon/ico-mail_black.svg) no-repeat center top 10px;
  padding-bottom: 10px;
  padding-left: 4px;
}

@media (max-width: 767px) {
  .header .inHeader .layerMenu .inLayer .circle-btn__item:nth-child(2) a {
    background: #ff7a38 url(../img/common/icon/ico-mail_white.svg) no-repeat center top 10px;
    color: #fff;
    padding-bottom: 13px;
    padding-left: 0;
  }
}

.header .inHeader .layerMenu .welcome {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.header .inHeader .layerMenu .welcome .txt {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.25em;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: center;
  background-color: #fe7a38;
  border-radius: 60px;
  padding: 11px 16px 11px;
  position: relative;
  margin-right: 5px;
}

.header .inHeader .layerMenu .welcome .txt::after {
  content: "";
  width: 10px;
  height: 9px;
  background-color: #fe7a38;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
}

.header .inHeader .layerMenu .welcome .img {
  width: 74px;
  height: 89px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: wavingMenu 1s ease-in-out infinite;
}

.header .inHeader .hamberger {
  position: fixed;
  top: 12px;
  right: 10px;
  z-index: 1001;
  width: 61px;
  height: 61px;
  border-radius: 50%;
  background-color: #f1f0e4;
  padding: 20px 5px 0;
  line-height: 0.1;
  text-align: center;
  cursor: pointer;
}

.header .inHeader .hamberger svg {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.header .inHeader .hamberger svg path {
  transition: 0.3s all ease-in-out;
}

.header .inHeader .hamberger span {
  display: inline-block;
  width: 29px;
  height: 3px;
  background: #fe7a38;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
  border-radius: 10px;
}

.header .inHeader .hamberger.active {
  background-color: #fe7a38;
}

.header .inHeader .hamberger.active svg path {
  fill: #f1f0e4;
}

.header .inHeader .hamberger.active span {
  background-color: #f1f0e4;
  width: 33px;
}

.header .inHeader .hamberger.active .ham {
  transform: rotate(30deg) translateY(7px) translateX(4px);
}

.header .inHeader .hamberger.active .ber {
  transform: rotate(-30deg);
}

.header .inHeader .hamberger.active .ger {
  display: none;
}

@media (min-width: 768px) {
  .fixHeader .header {
    padding: 15px 29px;
    background-color: rgba(255, 255, 255, 0.95);
  }
}

.fixHeader .header #logo {
  margin-bottom: 0;
}

.fixHeader .header #logo a img.logo-white {
  display: none;
}

.fixHeader .header #logo a img.logo-black {
  display: block;
}

.fixHeader .header .inHeader .layerMenu .inLayer .gNavi__item .label {
  color: #000;
}

.layerOn {
  overflow: hidden;
}

.layerOn .header .layerMenu {
  opacity: 1;
  pointer-events: auto;
}

.bnr-diagnosis {
  max-width: 100%;
  width: max-content;
  position: fixed;
  bottom: 14px;
  right: 50%;
  transform: translateX(50%);
  z-index: 10;
}

.bnr-diagnosis a {
  display: block;
  transition-delay: 1s;
}

.c-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .c-pagenavi {
    margin-top: 25px;
  }
}

.c-pagenavi .wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
}

.c-pagenavi a,
.c-pagenavi span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

@media (max-width: 767px) {

  .c-pagenavi a,
  .c-pagenavi span {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.c-pagenavi__num a,
.c-pagenavi__num span {
  margin: 0 8px;
}

.c-pagenavi__num a.current,
.c-pagenavi__num span.current {
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  background-color: #fe7a38;
  padding-left: 3px;
  padding-top: 3px;
  margin: 0 -2px;
}

.c-pagenavi__num a.current:first-child,
.c-pagenavi__num span.current:first-child {
  margin-left: 0;
}

.c-pagenavi__num a.current:last-child,
.c-pagenavi__num span.current:last-child {
  margin-right: 0;
}

.c-pagenavi__btn {
  width: auto;
}

.c-pagenavi__btn--next {
  margin-left: 16px;
}

.c-pagenavi__btn--prev {
  margin-right: 16px;
}

/*# sourceMappingURL=maps/styles.css.map */