@charset "UTF-8";
/******************************************************************
 * Reset CSS - CBT LINKs
******************************************************************/
/* reset margin
-----------------------------------------------------------------*/
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,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  zoom: 1;
  /* hasLayout in IE */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
}

/* reset font style
-----------------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 62.5%;
}

html * {
  box-sizing: inherit;
}

body {
  position: relative;
  font-family: serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.4;
  background: transparent;
  color: #000;
  width: 100%;
}

ul,
ol {
  list-style-type: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

em,
strong {
  font-style: normal;
  font-weight: inherit;
}

/* reset table
-----------------------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

table,
th,
td {
  table-layout: fixed;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* reset form style
-----------------------------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
textarea,
select,
option {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type=reset],
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  appearance: none;
  appearance: none;
  padding: 0;
}

select::-ms-expand {
  display: none;
}

button::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

button:focus,
input[type=reset]:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

textarea {
  resize: none;
  overflow: auto;
}

button {
  font: inherit;
}

*:focus {
  outline: none;
}

/* reset img
-----------------------------------------------------------------*/
img {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
}

/* IE
-----------------------------------------------------------------*/
main {
  display: block;
}

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

@media (max-width: 959px) and (min-width: 751px) {
  .tb-none {
    display: none !important;
  }
}

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

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

@media (min-width: 751px) {
  .sp {
    display: none !important;
  }
}

body {
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
  min-width: 375px;
  scroll-behavior: auto !important;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh) * 100);
  overflow: visible;
}
@media screen and (max-width: 959px) {
  body {
    --header-height: 65px;
  }
}
@media screen and (max-width: 750px) {
  body {
    font-size: 14px;
  }
}

.c-inner {
  width: 100%;
  max-width: calc(1200px + 40px);
  margin: 0 auto;
  padding: 0 20px;
}

.c-fadein {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: transform ease 1s, opacity ease 1s;
}

.c-fadein.to-top {
  transform: translateY(50px);
}

.c-fadein.to-bottom {
  transform: translateY(-50px);
}

.c-fadein.to-right {
  transform: translateX(-50px);
}

.c-fadein.to-left {
  transform: translateX(50px);
}

.c-fadein.to-rt {
  transform: translate(-50px, 50px);
}

.c-fadein.to-rb {
  transform: translate(-50px, -50px);
}

.c-fadein.to-lt {
  transform: translate(50px, 50px);
}

.c-fadein.to-lb {
  transform: translate(50px, -50px);
}

.c-fadein.inview {
  opacity: 1;
  transform: translate(0) !important;
}

.c-slidein {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: transform ease-out 0.5s, opacity ease-out 0.5s;
}
@media screen and (max-width: 750px) {
  .c-slidein {
    transition-duration: 0.4s;
  }
}

.c-slidein.to-top {
  transform: translateY(100vh);
}

.c-slidein.to-bottom {
  transform: translateY(-100vh);
}

.c-slidein.to-right {
  transform: translateX(-100vw);
}

.c-slidein.to-left {
  transform: translateX(100vw);
}

.c-slidein.to-rt {
  transform: translate(-100vw, 100vh);
}

.c-slidein.to-rb {
  transform: translate(-100vw, -100vh);
}

.c-slidein.to-lt {
  transform: translate(100vw, 100vh);
}

.c-slidein.to-lb {
  transform: translate(100vw, -100vh);
}

.c-slidein.inview {
  opacity: 1;
  transform: translate(0) !important;
}

.c-reveal {
  opacity: 0;
  transition: opacity 0.5s ease-in-out, -webkit-clip-path 0.5s ease-in-out;
  transition: clip-path 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transition: clip-path 0.5s ease-in-out, opacity 0.5s ease-in-out, -webkit-clip-path 0.5s ease-in-out;
}
@media screen and (max-width: 750px) {
  .c-reveal {
    transition-duration: 0.4s;
  }
}

.c-reveal.to-right {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

.c-reveal.to-left {
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}

.c-reveal.inview {
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.c-reveal2 {
  position: relative;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}
.c-reveal2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #36b02b;
  transform: translateX(-101%);
  z-index: 1;
}
.c-reveal2 .line {
  position: relative;
  display: inline-block;
  -webkit-clip-path: inset(0 105% 0 -5%);
          clip-path: inset(0 105% 0 -5%);
  z-index: 2;
}
.c-reveal2.inview::after {
  animation: reveal-marker 1.2s ease-in-out forwards;
}
.c-reveal2.inview .line {
  animation: reveal-text 0.4s ease-in-out 0.4s forwards;
}
@keyframes reveal-marker {
  0% {
    transform: translateX(-101%);
  }
  33% {
    transform: translateX(0);
  }
  66% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
@keyframes reveal-text {
  from {
    -webkit-clip-path: inset(0 105% 0 -5%);
            clip-path: inset(0 105% 0 -5%);
  }
  to {
    -webkit-clip-path: inset(0 -5% 0 -5%);
            clip-path: inset(0 -5% 0 -5%);
  }
}

.ease-in {
  transition-timing-function: ease-in;
}

.ease-out {
  transition-timing-function: ease-out;
}

.ease-in-out {
  transition-timing-function: ease-in-out;
}

@media screen and (min-width: 960px) {
  .c-fadein.sp-only,
  .c-slidein.sp-only,
  .c-reveal.sp-only {
    opacity: 1;
    transform: none;
  }
}
@media screen and (max-width: 750px) {
  .c-fadein.pc-only,
  .c-slidein.pc-only,
  .c-reveal.pc-only {
    opacity: 1;
    transform: none;
  }
}

body.no-animation .c-fadein,
body.no-animation .c-slidein,
body.no-animation .c-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: 0s !important;
}
body.no-animation .c-reveal {
  -webkit-clip-path: none !important;
          clip-path: none !important;
}
body.no-animation .c-reveal2 {
  transform: none;
}
body.no-animation .c-reveal2::after {
  content: none !important;
}
body.no-animation .c-reveal2 .line {
  -webkit-clip-path: none !important;
          clip-path: none !important;
  animation: none !important;
}

/*********************************************************
  * header
**********************************************************/
.header {
  height: 100px;
}
@media screen and (max-width: 1199px) {
  .header {
    height: 75px;
  }
}

/* header-pc
---------------------------------------------------------*/
.header-nav-pc {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  background: #FFF;
  width: 100vw;
  height: 100px;
  padding-left: 23px;
  transition: 0.5s;
  z-index: 999;
}
@media screen and (max-width: 1199px) {
  .header-nav-pc {
    display: none;
  }
}
.header-nav-pc .header-nav-content {
  display: flex;
  font-feature-settings: "palt";
}
.header-nav-pc .header-nav-logo {
  width: 200px;
  padding-top: 9px;
  margin-right: 33px;
}
@media screen and (max-width: 1679px) {
  .header-nav-pc .header-nav-logo {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1500px) {
  .header-nav-pc .header-nav-logo {
    width: 160px;
    align-self: center;
  }
}
@media screen and (max-width: 1400px) {
  .header-nav-pc .header-nav-logo {
    width: 120px;
  }
}
.header-nav-pc .header-nav-list {
  display: flex;
  align-items: center;
}
.header-nav-pc .header-nav-list > li {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-right: 33px;
  border-top: solid 4px transparent;
  border-bottom: solid 4px transparent;
}
@media screen and (max-width: 1679px) {
  .header-nav-pc .header-nav-list > li {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1600px) {
  .header-nav-pc .header-nav-list > li {
    font-size: 16px;
  }
}
@media screen and (max-width: 1400px) {
  .header-nav-pc .header-nav-list > li {
    font-size: 14px;
    margin-right: 12px;
  }
}
.header-nav-pc .header-nav-list > li.link-top a {
  font-family: "Lato", sans-serif;
}
.header-nav-pc .header-nav-list > li.current {
  border-bottom-color: #ffeb00;
}
.header-nav-pc .header-nav-list > li > a,
.header-nav-pc .header-nav-list > li > span {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.header-nav-pc .header-nav-list > li > a:hover,
.header-nav-pc .header-nav-list > li > span:hover {
  opacity: 0.5;
}
.header-nav-pc .header-nav-list > li > a > img,
.header-nav-pc .header-nav-list > li > span > img {
  width: 16px;
  height: 21px;
  margin-right: 8px;
}
.header-nav-pc .header-nav-list > li.parent {
  padding: 30px 0;
}
.header-nav-pc .header-nav-list > li.parent:hover {
  background: url(../img/common/header/icon-down.png) center bottom 20px/12px 8px no-repeat;
}
.header-nav-pc .header-nav-list > li:last-child {
  margin-right: 0;
}
.header-nav-pc .header-nav-contact {
  display: flex;
  align-items: center;
  text-align: center;
  font-feature-settings: "palt";
}
.header-nav-pc .header-nav-contact .contact-tel {
  margin-right: 22px;
}
@media screen and (max-width: 1500px) {
  .header-nav-pc .header-nav-contact .contact-tel {
    margin-right: 12px;
  }
}
.header-nav-pc .header-nav-contact .contact-tel-num a {
  display: flex;
  align-items: center;
  font: 700 28px "Lato", sans-serif;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 1500px) {
  .header-nav-pc .header-nav-contact .contact-tel-num a {
    font-size: 24px;
  }
}
@media screen and (max-width: 1400px) {
  .header-nav-pc .header-nav-contact .contact-tel-num a {
    font-size: 20px;
  }
}
.header-nav-pc .header-nav-contact .contact-tel-num a img {
  width: 23px;
  height: 23px;
  margin-right: 6px;
}
.header-nav-pc .header-nav-contact .contact-tel-time {
  color: #090a00;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 1500px) {
  .header-nav-pc .header-nav-contact .contact-tel-time {
    font-size: 12px;
  }
}
.header-nav-pc .header-nav-contact .contact-btn {
  display: flex;
}
.header-nav-pc .header-nav-contact .contact-btn li {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 1400px) {
  .header-nav-pc .header-nav-contact .contact-btn li {
    width: 90px;
  }
}
.header-nav-pc .header-nav-contact .contact-btn li a {
  position: relative;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #FFF;
  padding-top: 15px;
  text-align: center;
  transition: all 0.2s;
}
.header-nav-pc .header-nav-contact .contact-btn li a:hover {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  left: -1px;
  top: -1px;
  z-index: 1;
}
.header-nav-pc .header-nav-contact .contact-btn li a span {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  .header-nav-pc .header-nav-contact .contact-btn li a span {
    font-size: 12px;
  }
}
.header-nav-pc .header-nav-contact .contact-btn li:first-child a {
  background: #fa7f05;
}
.header-nav-pc .header-nav-contact .contact-btn li:first-child a img {
  width: 40px;
  height: 31px;
  margin-bottom: 8px;
}
.header-nav-pc .header-nav-contact .contact-btn li:last-child a {
  background: #009942;
}
.header-nav-pc .header-nav-contact .contact-btn li:last-child a img {
  width: 41px;
  height: 39px;
  margin-bottom: 4px;
}

.header-service-menu {
  position: absolute;
  top: calc(100% - 14px);
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  width: 100%;
  max-width: 1200px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  padding: 33px 30px 26px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}
.header-service-menu::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 0;
  width: 308px;
  height: 100%;
  background: #f5f5f5;
  transform: skewX(25deg);
  z-index: 0;
}
.header-service-menu__head {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 70px 0 0;
}
.header-service-menu__head .en {
  color: #36b02b;
  font: 700 16px "Lato", sans-serif;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.header-service-menu__head .jp {
  color: #222;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 24px;
}
.header-service-menu__head .c-button {
  width: 210px;
  height: 50px;
  background: #333;
  font-size: 16px;
  padding-right: 15px;
}
.header-service-menu__head .c-button::after {
  width: 16px;
  height: 14px;
  top: calc((100% - 14px) / 2);
  right: 13px;
}
.header-service-menu__list {
  display: flex;
}
.header-service-menu__list li {
  flex: 1;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.header-service-menu__list li + li {
  margin-left: 20px;
}
.header-service-menu__list li a {
  transition: opacity 0.2s ease;
}
.header-service-menu__list li a:hover {
  opacity: 0.7;
}
.header-service-menu__list li img {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}

.parent:hover .header-service-menu {
  opacity: 1;
  visibility: visible;
}

/* #fixed-header
---------------------------------------------------------*/
#fixed-header {
  top: -100px;
}
#fixed-header.is-show {
  top: 0;
}

/* header-nav-sp
---------------------------------------------------------*/
.header-nav-sp {
  position: relative;
  height: 75px;
  width: 100%;
  z-index: 999;
}
@media screen and (min-width: 1200px) {
  .header-nav-sp {
    display: none;
  }
}
.header-nav-sp .header-logo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
}
.header-nav-sp .header-logo img {
  width: 100%;
}
.header-nav-sp .navToggle {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  background: #fa7f05;
  cursor: pointer;
  text-align: center;
  border-bottom-left-radius: 10px;
  z-index: 1000;
  transition: all 0.3s ease;
}
.header-nav-sp .navToggle::after {
  position: absolute;
  bottom: 8px;
  right: 0;
  left: 0;
  content: "MENU";
  font: 14px "Lato", sans-serif;
  color: #FFF;
  font-weight: bold;
  transition: all 0.3s ease;
}
.header-nav-sp .navToggle span {
  display: block;
  position: absolute;
  width: 31px;
  cursor: pointer;
  border-bottom: solid 4px #FFF;
  transition: 0.4s ease-in-out;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.header-nav-sp .navToggle span:nth-child(1) {
  top: 14px;
}
.header-nav-sp .navToggle span:nth-child(2) {
  top: 24px;
}
.header-nav-sp .navToggle span:nth-child(3) {
  top: 34px;
}
.header-nav-sp .navToggle.active::after {
  content: "CLOSE";
}
.header-nav-sp .navToggle.active span {
  width: 31px;
  border-bottom: solid 2px #fff;
}
.header-nav-sp .navToggle.active span:nth-child(1) {
  top: 25px;
  transform: rotate(-45deg);
}
.header-nav-sp .navToggle.active span:nth-child(2) {
  opacity: 0;
}
.header-nav-sp .navToggle.active span:nth-child(3) {
  top: 25px;
  transform: rotate(45deg);
}
.header-nav-sp .globalMenu {
  position: fixed;
  top: 0;
  right: 0;
  background: #019320;
  color: #fff;
  opacity: 0;
  transition: all 0.6s;
  width: 100%;
  max-width: 600px;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  z-index: 998;
}
.header-nav-sp .globalMenu.active {
  opacity: 1;
  pointer-events: all;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__inner-logo {
  height: 87px;
  display: flex;
  align-items: center;
  padding: 0 0 10px 14px;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont {
  border-top: 1px solid #34a94d;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-sp__nav {
  margin-bottom: 20px;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-sp__nav li {
  position: relative;
  font-size: 16px;
  font-feature-settings: "palt";
  font-weight: bold;
  border-bottom: 1px solid #34a94d;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-sp__nav li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 9px 20px;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-sp__nav li a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  content: " ";
  width: 16px;
  height: 16px;
  background: url("../img/common/arrows-icon.png") center/contain no-repeat;
  margin: auto;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-sp__nav li .nav-child {
  border-top: 1px solid #34a94d;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-sp__nav li .nav-child li {
  display: flex;
  align-items: center;
  padding-left: 30px;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-sp__nav li .nav-child li::before {
  content: "−";
  color: #ffeb00;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-sp__nav li .nav-child li a {
  padding: 9px 20px 9px 10px;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-contact {
  padding: 0 20px;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-contact .contact-tel {
  position: relative;
  background: #FFF;
  color: #222;
  text-align: center;
  border-radius: 10px;
  padding: 10px 0;
  margin-bottom: 15px;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-contact .contact-tel-num {
  display: flex;
  justify-content: center;
  align-items: center;
  font: 30px "Lato", sans-serif;
  font-weight: bold;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-contact .contact-tel-num img {
  width: 28px;
  height: 28px;
  margin-right: 6px;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-contact .contact-tel-time {
  font-size: 12px;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-contact .contact-tel a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-contact .contact-btn li {
  height: 60px;
  margin-bottom: 15px;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-contact .contact-btn li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-feature-settings: "palt";
  color: #FFF;
  letter-spacing: 0.04em;
  text-align: center;
  border-radius: 10px;
  padding: 10px 0;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-contact .contact-btn li a span {
  font-weight: bold;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-contact .contact-btn li:first-child a {
  background: #fa7f05;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-contact .contact-btn li:first-child a img {
  width: 29px;
  height: 22px;
  margin-right: 12px;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-contact .contact-btn li:last-child a {
  background: #5dd826;
}
.header-nav-sp .globalMenu .menu-wrap .header-nav-sp__cont .header-nav-contact .contact-btn li:last-child a img {
  width: 33px;
  height: 32px;
  margin-right: 9px;
}

/*********************************************************
  * footer
**********************************************************/
/* footer
---------------------------------------------------------*/
.footer {
  position: relative;
  background: url("../img/common/footer/footer_bg.jpg") no-repeat;
  background-size: cover;
  color: #FFF;
  font-feature-settings: "palt";
  padding: 46px 0 67px;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #04b238, #6cde22);
}
@media screen and (max-width: 750px) {
  .footer {
    background: url("../img/common/footer/footer_bg_sp.jpg") center bottom no-repeat #252525;
    background-size: 100%;
    padding: 32px 0 38px;
  }
}
@media screen and (max-width: 750px) {
  .footer .c-inner {
    padding: 0;
  }
}
.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 33px;
}
@media screen and (max-width: 1200px) {
  .footer-top {
    justify-content: space-around;
  }
}
@media screen and (max-width: 750px) {
  .footer-top {
    margin-bottom: 8px;
  }
}
.footer-top-head {
  display: flex;
  justify-content: space-between;
  width: 536px;
}
@media screen and (max-width: 1200px) {
  .footer-top-head {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 959px) {
  .footer-top-head {
    width: auto;
  }
}
@media screen and (max-width: 750px) {
  .footer-top-head {
    display: block;
    padding: 0 20px;
  }
}
.footer-top-head .head-logo {
  width: 241px;
}
@media screen and (max-width: 1200px) {
  .footer-top-head .head-logo {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 750px) {
  .footer-top-head .head-logo {
    width: 160px;
    margin: 0 auto 10px;
  }
}
.footer-top-head .head-info {
  width: calc(100% - 241px - 20px);
  padding-top: 7px;
}
@media screen and (max-width: 959px) {
  .footer-top-head .head-info {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .footer-top-head .head-info {
    margin-bottom: 30px;
  }
}
.footer-top-head .head-info-ttl {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .footer-top-head .head-info-ttl {
    font-size: 13px;
    margin-bottom: 4px;
  }
}
.footer-top-head .head-info-address {
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .footer-top-head .head-info-address {
    font-size: 12px;
    line-height: 1.5;
  }
}
.footer-top-contact {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 520px - 60px);
  padding-top: 5px;
}
@media screen and (max-width: 1200px) {
  .footer-top-contact {
    width: 310px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 750px) {
  .footer-top-contact {
    display: block;
    width: 100%;
    padding: 0 20px;
  }
}
.footer-top-contact .contact-tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 312px;
  height: 92px;
  background: #3b3b3b;
  color: #FFF;
  text-align: center;
  border: solid 1px #252525;
  border-radius: 6px;
  box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}
.footer-top-contact .contact-tel:hover {
  border-color: transparent;
}
@media screen and (max-width: 1200px) {
  .footer-top-contact .contact-tel {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 750px) {
  .footer-top-contact .contact-tel {
    width: 100%;
    height: 80px;
    border: none;
    border-radius: 10px;
    padding: 2px 0 0 0;
  }
}
.footer-top-contact .contact-tel-num {
  display: flex;
  justify-content: center;
  align-items: center;
  font: 30px "Lato", sans-serif;
  font-weight: bold;
}
.footer-top-contact .contact-tel-num img {
  width: 26px;
  height: 26px;
  margin-right: 6px;
}
.footer-top-contact .contact-tel-time {
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .footer-top-contact .contact-tel-time {
    font-size: 12px;
  }
}
.footer-top-contact .contact-btn {
  width: calc(100% - 304px - 20px);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .footer-top-contact .contact-btn {
    width: 310px;
  }
}
@media screen and (max-width: 750px) {
  .footer-top-contact .contact-btn {
    width: 100%;
    display: block;
  }
}
.footer-top-contact .contact-btn li {
  width: 142px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .footer-top-contact .contact-btn li {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    margin-bottom: 15px;
  }
}
.footer-top-contact .contact-btn li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  border: solid 1px #252525;
  border-radius: 6px;
  box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.15);
  font-weight: bold;
  transition: 0.2s;
}
.footer-top-contact .contact-btn li a:hover {
  border-color: transparent;
}
@media screen and (max-width: 750px) {
  .footer-top-contact .contact-btn li a {
    border: none;
    flex-direction: row;
    font-size: 18px;
  }
}
.footer-top-contact .contact-btn li img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .footer-top-contact .contact-btn li img {
    margin: 0 10px 0 0;
  }
}
@media screen and (max-width: 750px) {
  .footer-top-contact .contact-btn li span {
    letter-spacing: 0;
  }
}
.footer-top-contact .contact-btn li:first-child a {
  background: #fa7f05;
}
.footer-top-contact .contact-btn li:first-child a img {
  width: 40px;
  height: 30px;
}
@media screen and (max-width: 750px) {
  .footer-top-contact .contact-btn li:first-child a img {
    width: 31px;
    height: 22px;
  }
}
.footer-top-contact .contact-btn li:last-child a {
  background: #009942;
}
.footer-top-contact .contact-btn li:last-child a img {
  width: 41px;
  height: 40px;
}
@media screen and (max-width: 750px) {
  .footer-top-contact .contact-btn li:last-child a img {
    width: 32px;
    height: 31px;
  }
}
.footer .footer-menu {
  border-bottom: 1px solid #474747;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .footer .footer-menu {
    border-bottom: 0;
    margin-bottom: 10px;
  }
}
.footer .footer-menu-ttl {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .footer .footer-menu-ttl {
    border-bottom: 2px solid #1fa81a;
    padding-bottom: 7px;
    margin-bottom: 0;
  }
}
.footer .footer-menu-ttl span {
  position: relative;
  font: 16px "Lato", sans-serif;
  font-weight: bold;
  background: #252525;
  padding-right: 10px;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .footer .footer-menu-ttl span {
    font-size: 18px;
    line-height: 1;
    padding-left: 20px;
  }
}
.footer .footer-menu-ttl::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 1px;
  background: #474747;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .footer .footer-menu-ttl::before {
    content: none;
  }
}
.footer .footer-menu-cont {
  display: flex;
  justify-content: space-between;
  padding-bottom: 21px;
}
@media screen and (max-width: 959px) {
  .footer .footer-menu-cont {
    display: block;
    padding-bottom: 0;
  }
}
.footer .footer-menu-wrap {
  display: flex;
  width: calc(100% - 360px - 88px);
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  .footer .footer-menu-wrap {
    width: 100%;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer-menu-wrap {
    display: block;
  }
}
.footer .footer-menu-wrap__list:first-child {
  width: 200px;
}
@media screen and (max-width: 750px) {
  .footer .footer-menu-wrap__list:first-child {
    width: 100%;
  }
}
.footer .footer-menu-wrap__list:first-child li {
  font-weight: bold;
  margin-bottom: 12px;
}
@media screen and (max-width: 750px) {
  .footer .footer-menu-wrap__list:first-child li {
    margin-bottom: 0;
  }
}
.footer .footer-menu-wrap__list:first-child li a {
  transition: all 0.3s ease;
}
.footer .footer-menu-wrap__list li {
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-bottom: 17px;
}
@media screen and (max-width: 750px) {
  .footer .footer-menu-wrap__list li {
    margin-bottom: 0;
  }
}
.footer .footer-menu-wrap__list li a {
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .footer .footer-menu-wrap__list li a {
    position: relative;
    display: block;
    font-size: 16px;
    border-bottom: 1px solid #4d4d4d;
    padding: 9px 20px;
  }
  .footer .footer-menu-wrap__list li a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 14px;
    width: 16px;
    height: 13px;
    background: url(../img/parts/c-pagelinks/arrow.png) center/contain no-repeat;
    margin: auto;
  }
}
.footer .footer-menu-wrap__list li:hover a {
  color: #3ecc31;
}
.footer .footer-menu-wrap__list li:hover .menu-child li a {
  color: #FFF;
}
.footer .footer-menu-wrap__list li .menu-child {
  margin-top: 13px;
}
@media screen and (max-width: 750px) {
  .footer .footer-menu-wrap__list li .menu-child {
    margin-top: 0;
  }
}
.footer .footer-menu-wrap__list li .menu-child li {
  font-size: 14px;
  margin-bottom: 12px;
}
@media screen and (max-width: 750px) {
  .footer .footer-menu-wrap__list li .menu-child li {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer-menu-wrap__list li .menu-child li a {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 32px;
  }
  .footer .footer-menu-wrap__list li .menu-child li a::before {
    content: "−";
    color: #3ecc31;
    margin-right: 10px;
  }
}
.footer .footer-menu-wrap__list li .menu-child li::before {
  content: "−";
  color: #3ecc31;
  margin-right: 4px;
}
@media screen and (max-width: 750px) {
  .footer .footer-menu-wrap__list li .menu-child li::before {
    content: none;
  }
}
.footer .footer-menu-wrap__list li .menu-child li:hover a {
  color: #3ecc31;
}
.footer .footer-menu-bnr {
  position: relative;
  width: 395px;
  max-width: 100%;
  top: -16px;
  right: -35px;
}
.footer .footer-menu-bnr a {
  position: relative;
  display: block;
  width: 100%;
}
@media screen and (min-width: 751px) {
  .footer .footer-menu-bnr a::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 100%;
    bottom: 20px;
    left: 0;
    background: linear-gradient(to right, #04b238, #6cde22);
    opacity: 0.5;
    pointer-events: none;
    transition: right 0.2s;
  }
  .footer .footer-menu-bnr a:hover::after {
    right: 35px;
  }
}
@media screen and (max-width: 959px) {
  .footer .footer-menu-bnr {
    margin: 0 auto;
    right: unset;
    padding: 0 28px;
  }
}
.footer-copy {
  font: 12px "Lato", sans-serif;
  color: #999;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .footer-copy {
    font-size: 10px;
    transform: scale(0.9);
    transform-origin: center;
    letter-spacing: 0.06em;
  }
}

.c-mv-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  background: url(../img/common/mv-bg.png) center/cover no-repeat;
}
.c-mv-ttl .jp {
  font-size: 48px;
  font-weight: 700;
  font-style: oblique;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.625;
  font-feature-settings: "palt";
}
.c-mv-ttl .en {
  margin-bottom: 16px;
  font: 700 20px "Lato", sans-serif;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 750px) {
  .c-mv-ttl {
    height: 140px;
  }
  .c-mv-ttl .box {
    margin-bottom: 10px;
  }
  .c-mv-ttl .jp {
    font-size: 24px;
    margin-bottom: 6px;
  }
  .c-mv-ttl .en {
    font-size: 16px;
    margin-bottom: 6px;
  }
}

.c-pagelinks-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}
@media screen and (max-width: 750px) {
  .c-pagelinks-row {
    display: block;
    border-bottom: none;
  }
}
.c-pagelinks-row .c-pagelinks-item {
  width: 50%;
  padding: 90px 10px 86px;
  border-right: 1px solid #FFF;
}
@media screen and (max-width: 750px) {
  .c-pagelinks-row .c-pagelinks-item {
    width: 100%;
    border-right: none;
    padding: 32px 10px 37px;
  }
}
.c-pagelinks-row .c-pagelinks-item:last-child {
  border-right: none;
}
@media screen and (max-width: 750px) {
  .c-pagelinks-row .c-pagelinks-item:last-child {
    border-bottom: 1px solid #FFF;
  }
}
.c-pagelinks-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #222;
  color: #FFF;
  padding: 76px 10px 79px;
  transition: all 0.3s ease;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .c-pagelinks-item {
    border-bottom: 1px solid #FFF;
    padding: 32px 10px 37px;
  }
}
.c-pagelinks-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.c-pagelinks-item .item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  z-index: -1;
}
.c-pagelinks-item .item-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-pagelinks-item .item-ttl {
  text-align: center;
  font-weight: bold;
  margin-bottom: 8px;
}
.c-pagelinks-item .item-ttl .en {
  font: 18px "Lato", sans-serif;
  color: #3ecc31;
}
@media screen and (max-width: 959px) {
  .c-pagelinks-item .item-ttl .en {
    font-size: 14px;
  }
}
.c-pagelinks-item .item-ttl .jp {
  font-size: 36px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 959px) {
  .c-pagelinks-item .item-ttl .jp {
    font-size: 24px;
  }
}
.c-pagelinks-item .item-txt {
  font-size: 18px;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .c-pagelinks-item .item-txt {
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1.5;
  }
}
.c-pagelinks-item .item-btn {
  position: relative;
  width: 310px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #FFF;
  padding: 8px 0;
  transition: all 0.3s ease;
  margin-top: 22px;
}
@media screen and (max-width: 750px) {
  .c-pagelinks-item .item-btn {
    display: none;
  }
}
.c-pagelinks-item .item-btn::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  content: " ";
  width: 15px;
  height: 15px;
  background: url("../img/parts/c-pagelinks/arrow.png") no-repeat;
  background-size: 100%;
  margin: auto;
  transition: all 0.3s ease;
}
.c-pagelinks-item::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 28px;
  content: " ";
  width: 32px;
  height: 29px;
  background: url("../img/parts/c-pagelinks/arrow.png") no-repeat;
  background-size: 100%;
  margin: auto;
  transition: all 0.3s ease;
}
@media screen and (max-width: 959px) {
  .c-pagelinks-item::after {
    right: 13px;
    width: 20px;
    height: 17px;
  }
}
.c-pagelinks-item.download .item-ttl .jp {
  display: flex;
  align-items: center;
}
.c-pagelinks-item.download .item-ttl .jp img {
  width: 32px;
  height: 40px;
  margin-right: 20px;
}
@media screen and (max-width: 750px) {
  .c-pagelinks-item.download .item-ttl .jp img {
    width: 19px;
    height: 25px;
    margin-right: 12px;
  }
}
.c-pagelinks-item.company::after {
  content: none;
}
@media screen and (max-width: 750px) {
  .c-pagelinks-item.company::after {
    content: " ";
  }
}
.c-pagelinks-item:hover .item-bg {
  opacity: 0.4;
}
.c-pagelinks-item:hover .item-btn {
  background: #FFF;
  color: #3ecc31;
}
.c-pagelinks-item:hover .item-btn::after {
  right: 6px;
}
.c-pagelinks-item:hover::after {
  right: 18px;
}
.c-pagelinks-item:last-child {
  border-bottom: none;
}

.topic-path {
  padding-top: 10px;
  font-size: 14px;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}
.topic-path a {
  padding-bottom: 5px;
  font-weight: 700;
  color: #36b02b;
  transition: opacity 0.2s ease;
}
.topic-path a:hover {
  opacity: 0.7;
}
.topic-path a:hover {
  border-bottom: 1px solid #36b02b;
}
.topic-path span > span::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 9px;
  background: url(../img/common/arrow-r-light.svg) center/contain no-repeat;
  padding: 0 0.8em 0 1em;
}
.topic-path span > span:last-child::after {
  content: none;
}
@media screen and (max-width: 750px) {
  .topic-path {
    display: inline-block;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
}

.c-ttl {
  position: relative;
  text-align: center;
  font-feature-settings: "palt";
}
.c-ttl-msg {
  position: relative;
  display: inline-block;
  font-size: 28px;
  color: #36b02b;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1200px) {
  .c-ttl-msg {
    font-size: 24px;
  }
}
@media screen and (max-width: 750px) {
  .c-ttl-msg {
    top: -9px;
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 7px;
  }
}
.c-ttl-msg::before, .c-ttl-msg::after {
  position: absolute;
  bottom: 7px;
  content: " ";
  width: 60px;
  height: 2px;
  background: #36b02b;
}
@media screen and (max-width: 750px) {
  .c-ttl-msg::before, .c-ttl-msg::after {
    bottom: 8px;
    width: 45px;
  }
}
.c-ttl-msg::before {
  left: -62px;
  transform: rotate(60deg);
}
@media screen and (max-width: 750px) {
  .c-ttl-msg::before {
    left: -45px;
  }
}
.c-ttl-msg::after {
  right: -62px;
  transform: rotate(-60deg);
}
@media screen and (max-width: 750px) {
  .c-ttl-msg::after {
    right: -45px;
  }
}
.c-ttl .en-large {
  position: absolute;
  top: -60px;
  right: 0;
  left: 0;
  font: 150px "Inter", sans-serif;
  color: #000;
  font-weight: bold;
  opacity: 0.03;
  margin: auto;
}
.c-ttl .en-large--white {
  color: #fefefe;
  opacity: 1;
}
@media screen and (max-width: 1200px) {
  .c-ttl .en-large {
    font-size: 100px;
  }
}
@media screen and (max-width: 750px) {
  .c-ttl .en-large {
    top: -20px;
    font-size: 50px;
  }
}
.c-ttl .en-small {
  position: relative;
  display: block;
  font: 18px "Lato", sans-serif;
  color: #36b02b;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .c-ttl .en-small {
    font-size: 14px;
  }
}
.c-ttl .jp {
  position: relative;
  display: block;
  font-size: 48px;
  color: #222;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .c-ttl .jp {
    font-size: 36px;
  }
}
@media screen and (max-width: 750px) {
  .c-ttl .jp {
    font-size: 30px;
    line-height: 1.3;
  }
}
.c-ttl .jp .green {
  color: #36b02b;
}
.c-ttl .jp .large {
  font: 72px "Lato", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .c-ttl .jp .large {
    font-size: 42px;
  }
}
.c-ttl::before {
  position: absolute;
  top: -90px;
  right: 0;
  left: 0;
  content: " ";
  width: 95px;
  height: 82px;
  background: url("../img/parts/c-ttl/logo.png") no-repeat;
  background-size: 100%;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .c-ttl::before {
    top: -74px;
    width: 68px;
    height: 62px;
  }
}

.c-button {
  width: 100%;
  max-width: 320px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to left, #6edf22, #00b039);
  font-size: 18px;
  font-weight: 700;
  font-feature-settings: "palt";
  color: #fff;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  position: relative;
}
.c-button::before {
  content: "";
  width: 18px;
  height: 16px;
  display: inline-block;
  background: url(../img/common/arrows-icon.png) center/cover no-repeat;
  position: absolute;
  top: calc((100% - 16px) / 2);
  right: 14px;
  transition: all 0.3s ease;
}
.c-button--reverse::before {
  transform: rotate(180deg);
  left: 19px;
  transition: all 0.3s ease;
}
.c-button--reverse:hover::before {
  left: 13px;
}
@media screen and (max-width: 750px) {
  .c-button {
    max-width: 295px;
    height: 50px;
    font-size: 16px;
  }
  .c-button::before {
    width: 13px;
    height: 12px;
    top: calc((100% - 12px) / 2);
  }
  .c-button--reverse::before {
    right: 14px;
  }
}
.c-button:hover::before {
  right: 8px;
}

/*********************************************************
  * c-contact
**********************************************************/
.c-contact {
  background: url("../img/parts/c-contact/bg.jpg") no-repeat;
  background-size: cover;
  color: #FFF;
  font-feature-settings: "palt";
  padding: 98px 0 77px;
}
@media screen and (max-width: 750px) {
  .c-contact {
    background: url("../img/parts/c-contact/bg_sp.jpg") no-repeat;
    background-size: cover;
    padding: 36px 0 24px;
  }
}
.c-contact .c-ttl {
  margin-bottom: 16px;
}
@media screen and (max-width: 750px) {
  .c-contact .c-ttl {
    margin-bottom: 18px;
  }
}
.c-contact .c-ttl .en-large, .c-contact .c-ttl .en-small, .c-contact .c-ttl .jp {
  color: #FFF;
}
@media screen and (max-width: 750px) {
  .c-contact .c-ttl .en-large, .c-contact .c-ttl .en-small, .c-contact .c-ttl .jp {
    margin-bottom: 3px;
  }
}
.c-contact .c-ttl .en-large {
  top: -82px;
  font-size: 140px;
  opacity: 0.15;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1200px) {
  .c-contact .c-ttl .en-large {
    font-size: 100px;
  }
}
@media screen and (max-width: 750px) {
  .c-contact .c-ttl .en-large {
    top: -14px;
    font-size: 50px;
  }
}
.c-contact .c-ttl::before {
  content: none;
}
.c-contact-txt {
  max-width: 1000px;
  letter-spacing: 0.1em;
  margin: 0 auto 25px;
}
@media screen and (max-width: 750px) {
  .c-contact-txt {
    line-height: 1.8571428571;
    margin-bottom: 25px;
  }
}
.c-contact-wrap {
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .c-contact-wrap {
    display: block;
  }
}
.c-contact-wrap__tel {
  width: 460px;
  height: 120px;
}
@media screen and (max-width: 959px) {
  .c-contact-wrap__tel {
    width: 300px;
  }
}
@media screen and (max-width: 750px) {
  .c-contact-wrap__tel {
    width: 100%;
    height: 80px;
  }
}
.c-contact-wrap__tel a {
  position: relative;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #FFF;
  color: #090a00;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
  transition: 0.2s;
}
@media screen and (max-width: 750px) {
  .c-contact-wrap__tel a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
  }
}
.c-contact-wrap__tel a:hover {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.c-contact-wrap__tel .contact-tel-num {
  display: flex;
  justify-content: center;
  align-items: center;
  font: 46px "Lato", sans-serif;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .c-contact-wrap__tel .contact-tel-num {
    font-size: 30px;
  }
}
.c-contact-wrap__tel .contact-tel-num span {
  font-weight: normal;
}
.c-contact-wrap__tel .contact-tel-num img {
  width: 38px;
  height: 38px;
  margin-right: 10px;
}
@media screen and (max-width: 959px) {
  .c-contact-wrap__tel .contact-tel-num img {
    width: 28px;
    height: 28px;
    margin-right: 7px;
  }
}
.c-contact-wrap__tel .contact-tel-time {
  font-size: 18px;
  line-height: 1;
  margin-top: 7px;
}
@media screen and (max-width: 959px) {
  .c-contact-wrap__tel .contact-tel-time {
    font-size: 12px;
  }
}
.c-contact-wrap__btn {
  width: calc(100% - 460px - 20px);
  height: 120px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  .c-contact-wrap__btn {
    width: calc(100% - 300px - 20px);
  }
}
@media screen and (max-width: 750px) {
  .c-contact-wrap__btn {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 15px;
  }
}
.c-contact-wrap__btn li {
  width: calc(50% - 10px);
  text-align: center;
}
@media screen and (max-width: 750px) {
  .c-contact-wrap__btn li {
    width: 100%;
    height: 60px;
    margin-bottom: 15px;
  }
}
.c-contact-wrap__btn li a {
  position: relative;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
  padding-top: 3%;
  transition: 0.2s;
}
@media screen and (max-width: 750px) {
  .c-contact-wrap__btn li a {
    flex-direction: row;
    padding-top: 0;
  }
}
.c-contact-wrap__btn li a:hover {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.c-contact-wrap__btn li img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .c-contact-wrap__btn li img {
    margin: 0 10px 0 0;
  }
}
.c-contact-wrap__btn li span {
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: bold;
}
.c-contact-wrap__btn li:first-child a {
  background: #fa7f05;
}
.c-contact-wrap__btn li:first-child a img {
  width: 43px;
  height: 32px;
  margin-bottom: 6px;
}
@media screen and (max-width: 750px) {
  .c-contact-wrap__btn li:first-child a img {
    width: 28px;
    height: 22px;
    margin-bottom: 0;
  }
}
.c-contact-wrap__btn li:last-child a {
  background: #009942;
}
.c-contact-wrap__btn li:last-child a img {
  width: 45px;
  height: 44px;
  margin-bottom: 2px;
}
@media screen and (max-width: 750px) {
  .c-contact-wrap__btn li:last-child a img {
    width: 32px;
    height: 31px;
    margin-bottom: 0;
  }
}

.c-subttl {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.c-subttl .txt {
  text-align: center;
  position: relative;
}
.c-subttl .subtxt {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  position: absolute;
  bottom: -1.3em;
  left: 0;
}
@media (min-width: 751px) {
  .c-subttl::before, .c-subttl::after {
    content: "";
    width: 100%;
    height: 4px;
    margin-top: 6px;
    background: #36b02b;
    flex: 1;
  }
  .c-subttl .txt {
    max-width: 80%;
    margin: 0 39px;
  }
}
@media screen and (max-width: 1200px) {
  .c-subttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 750px) {
  .c-subttl {
    padding: 0 6px 11px;
    font-size: 24px;
    line-height: 1.3333333333;
    border-bottom: 4px solid #36b02b;
  }
  .c-subttl .subtxt {
    position: unset;
    font-size: 12px;
  }
}

.c-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagination .page-numbers {
  display: block;
  width: 37px;
  height: 37px;
  transform: rotate(45deg);
  border: solid 1px #c6c6c6;
  color: #222;
  background: #fff;
  font: 18px "Lato", sans-serif;
  margin: 0 12px;
  transition: 0.2s;
}
.c-pagination .page-numbers:hover {
  background: #c6c6c6;
}
.c-pagination .page-numbers .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
}
.c-pagination .page-numbers.current {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.c-pagination .page-numbers.dots {
  transform: none;
  text-align: center;
  border: none;
  pointer-events: none;
  margin: 0;
}
.c-pagination .page-numbers.prev, .c-pagination .page-numbers.next {
  width: 35px;
  height: 35px;
  background: #36b02b;
  border-color: #36b02b;
  transition: opacity 0.2s ease;
}
.c-pagination .page-numbers.prev:hover, .c-pagination .page-numbers.next:hover {
  opacity: 0.7;
}
.c-pagination .page-numbers.prev::after, .c-pagination .page-numbers.next::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
}
.c-pagination .page-numbers.prev {
  margin-right: 27px;
}
.c-pagination .page-numbers.prev::after {
  background: url(../img/common/page-arrow-prev.svg) left 40% center/11px no-repeat;
}
.c-pagination .page-numbers.next {
  margin-left: 27px;
}
.c-pagination .page-numbers.next::after {
  background: url(../img/common/page-arrow-next.svg) right 40% center/11px no-repeat;
}
@media screen and (max-width: 750px) {
  .c-pagination .page-numbers {
    width: 25px;
    height: 25px;
    font-size: 14px;
    margin: 0 8px;
  }
  .c-pagination .page-numbers.prev, .c-pagination .page-numbers.next {
    width: 23px;
    height: 23px;
  }
  .c-pagination .page-numbers.prev {
    margin-right: 15px;
  }
  .c-pagination .page-numbers.prev::after {
    background-size: 7px;
  }
  .c-pagination .page-numbers.next {
    margin-left: 15px;
  }
  .c-pagination .page-numbers.next::after {
    background-size: 7px;
  }
}

.c-post-content,
body.post-type-news {
  font-feature-settings: "palt";
}
.c-post-content h2, .c-post-content h3, .c-post-content h4, .c-post-content h5, .c-post-content ul, .c-post-content ol, .c-post-content table, .c-post-content p, .c-post-content blockquote, .c-post-content .linkcard,
body.post-type-news h2,
body.post-type-news h3,
body.post-type-news h4,
body.post-type-news h5,
body.post-type-news ul,
body.post-type-news ol,
body.post-type-news table,
body.post-type-news p,
body.post-type-news blockquote,
body.post-type-news .linkcard {
  clear: both;
}
.c-post-content h2:first-child, .c-post-content h3:first-child, .c-post-content h4:first-child, .c-post-content h5:first-child, .c-post-content ul:first-child, .c-post-content ol:first-child, .c-post-content table:first-child, .c-post-content p:first-child, .c-post-content blockquote:first-child, .c-post-content .linkcard:first-child,
body.post-type-news h2:first-child,
body.post-type-news h3:first-child,
body.post-type-news h4:first-child,
body.post-type-news h5:first-child,
body.post-type-news ul:first-child,
body.post-type-news ol:first-child,
body.post-type-news table:first-child,
body.post-type-news p:first-child,
body.post-type-news blockquote:first-child,
body.post-type-news .linkcard:first-child {
  margin-top: 0;
}
.c-post-content h2:last-child, .c-post-content h3:last-child, .c-post-content h4:last-child, .c-post-content h5:last-child, .c-post-content ul:last-child, .c-post-content ol:last-child, .c-post-content table:last-child, .c-post-content p:last-child, .c-post-content blockquote:last-child, .c-post-content .linkcard:last-child,
body.post-type-news h2:last-child,
body.post-type-news h3:last-child,
body.post-type-news h4:last-child,
body.post-type-news h5:last-child,
body.post-type-news ul:last-child,
body.post-type-news ol:last-child,
body.post-type-news table:last-child,
body.post-type-news p:last-child,
body.post-type-news blockquote:last-child,
body.post-type-news .linkcard:last-child {
  margin-bottom: 0;
}
.c-post-content h2, .c-post-content h3, .c-post-content h4, .c-post-content h5,
body.post-type-news h2,
body.post-type-news h3,
body.post-type-news h4,
body.post-type-news h5 {
  line-height: 1.8;
}
.c-post-content h2,
body.post-type-news h2 {
  font-size: 28px;
  font-weight: 500;
  background: #36b02b;
  border-bottom: 4px solid #197211;
  color: #fff;
  letter-spacing: 0.04em;
  margin: 60px 0 25px;
  padding: 5px 10px;
  text-align: center;
}
.c-post-content h3,
body.post-type-news h3 {
  background: linear-gradient(to right, #36b02b, #36b02b 100px, #c6c6c6 100px, #c6c6c6) bottom/100% 2px no-repeat;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 47px 0 23px;
  padding-bottom: 8px;
}
.c-post-content h4,
body.post-type-news h4 {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 40px 0 11px;
  padding-left: 15px;
}
.c-post-content h4::before,
body.post-type-news h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 70%;
  background: #36b02b;
}
.c-post-content h5,
body.post-type-news h5 {
  position: relative;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 40px 0 13px;
  padding-left: 24px;
}
.c-post-content h5::before,
body.post-type-news h5::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 4px;
  background: #36b02b;
}
.c-post-content p,
body.post-type-news p {
  letter-spacing: 0.14em;
  margin-bottom: 42px;
}
.c-post-content p::after,
body.post-type-news p::after {
  content: "";
  display: block;
  clear: both;
}
.c-post-content a,
body.post-type-news a {
  color: #36b02b;
  text-decoration: underline;
  text-underline-offset: 9px;
  transition: opacity 0.2s ease;
}
.c-post-content a:hover,
body.post-type-news a:hover {
  opacity: 0.7;
}
.c-post-content em,
body.post-type-news em {
  font-style: italic;
}
.c-post-content strong,
body.post-type-news strong {
  color: #fa7f05;
  font-weight: bold;
}
.c-post-content img,
body.post-type-news img {
  max-width: 100%;
  border: solid 1px #EAEAEA;
}
.c-post-content img.alignleft,
body.post-type-news img.alignleft {
  float: left;
  margin: 9px 25px 0 0;
}
.c-post-content img.alignright,
body.post-type-news img.alignright {
  float: right;
  margin: 9px 0 0 25px;
}
.c-post-content img.aligncenter,
body.post-type-news img.aligncenter {
  display: block;
  clear: both;
  margin: 0 auto 20px;
}
.c-post-content ul,
body.post-type-news ul {
  margin-bottom: 28px;
}
.c-post-content ul li,
body.post-type-news ul li {
  position: relative;
  letter-spacing: 0.12em;
  line-height: 1.875;
  padding-left: 13px;
}
.c-post-content ul li::before,
body.post-type-news ul li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  display: block;
  width: 6px;
  height: 6px;
  background-color: #36b02b;
  border-radius: 50%;
}
.c-post-content ul li + li,
body.post-type-news ul li + li {
  margin-top: 6px;
}
.c-post-content ol,
body.post-type-news ol {
  counter-reset: c;
  margin-bottom: 28px;
}
.c-post-content ol li,
body.post-type-news ol li {
  position: relative;
  counter-increment: c;
  letter-spacing: 0.12em;
  line-height: 1.875;
  padding-left: 18px;
}
.c-post-content ol li::before,
body.post-type-news ol li::before {
  content: counter(c) ".";
  position: absolute;
  left: -2px;
  top: -4px;
  color: #36b02b;
  font-size: 20px;
  letter-spacing: 0.04em;
}
.c-post-content ol li + li,
body.post-type-news ol li + li {
  margin-top: 7px;
}
.c-post-content blockquote,
body.post-type-news blockquote {
  position: relative;
  background-color: #ededed;
  color: #474747;
  letter-spacing: 0.12em;
  line-height: 1.875;
  margin: 50px 0 40px;
  padding: 30px 44px 35px;
}
.c-post-content blockquote::before,
body.post-type-news blockquote::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 27px;
  display: block;
  width: 38px;
  height: 29px;
  background: url(../img/news/icon-quote.png) center/contain no-repeat;
}
.c-post-content blockquote p:last-child,
body.post-type-news blockquote p:last-child {
  margin-bottom: 0;
}
.c-post-content table,
body.post-type-news table {
  margin: 60px 0 60px;
}
.c-post-content table td,
body.post-type-news table td {
  border: solid 1px #c6c6c6;
  padding: 10px 20px;
  text-align: center;
}
.c-post-content table thead td,
body.post-type-news table thead td {
  height: 70px !important;
  background: #36b02b;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 1.875;
}
.c-post-content table tbody td,
body.post-type-news table tbody td {
  height: 74px !important;
  color: #000;
  font-size: 14px;
  letter-spacing: 0.12em;
  line-height: 1.8571428571;
}
@media screen and (max-width: 750px) {
  .c-post-content h2,
  body.post-type-news h2 {
    font-size: 20px;
    letter-spacing: 0.04em;
    margin: 40px 0 15px;
    padding: 3px 10px;
  }
  .c-post-content h3,
  body.post-type-news h3 {
    background-image: linear-gradient(to right, #36b02b, #36b02b 50px, #c6c6c6 50px, #c6c6c6);
    font-size: 18px;
    letter-spacing: 0.12em;
    margin: 35px 0 15px;
    padding-bottom: 5px;
  }
  .c-post-content h4,
  body.post-type-news h4 {
    font-size: 17px;
    letter-spacing: 0.12em;
    margin: 30px 0 10px;
    padding-left: 12px;
  }
  .c-post-content h5,
  body.post-type-news h5 {
    font-size: 16px;
    letter-spacing: 0.12em;
    margin: 30px 0 10px;
    padding-left: 20px;
  }
  .c-post-content h5::before,
  body.post-type-news h5::before {
    width: 12px;
    height: 3px;
  }
  .c-post-content p,
  body.post-type-news p {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .c-post-content a,
  body.post-type-news a {
    text-underline-offset: 5px;
  }
  .c-post-content img.alignleft, .c-post-content img.alignright, .c-post-content img.aligncenter,
  body.post-type-news img.alignleft,
  body.post-type-news img.alignright,
  body.post-type-news img.aligncenter {
    float: none;
    display: block;
    margin: 0 auto 10px;
  }
  .c-post-content ul,
  body.post-type-news ul {
    margin-bottom: 15px;
  }
  .c-post-content ul li,
  body.post-type-news ul li {
    font-size: 14px;
    padding-left: 10px;
  }
  .c-post-content ul li::before,
  body.post-type-news ul li::before {
    top: 10px;
    width: 5px;
    height: 5px;
  }
  .c-post-content ol,
  body.post-type-news ol {
    margin-bottom: 15px;
  }
  .c-post-content ol li,
  body.post-type-news ol li {
    font-size: 14px;
    padding-left: 15px;
  }
  .c-post-content ol li::before,
  body.post-type-news ol li::before {
    font-size: 18px;
  }
  .c-post-content blockquote,
  body.post-type-news blockquote {
    font-size: 14px;
    letter-spacing: 0.12em;
    margin: 30px 0 20px;
    padding: 15px 20px 20px;
  }
  .c-post-content blockquote::before,
  body.post-type-news blockquote::before {
    top: -10px;
    left: 10px;
    width: 23px;
    height: 18px;
  }
  .c-post-content table,
  body.post-type-news table {
    margin: 40px 0 40px;
  }
  .c-post-content table td,
  body.post-type-news table td {
    padding: 4px 8px;
  }
  .c-post-content table thead td,
  body.post-type-news table thead td {
    height: 40px !important;
    font-size: 14px;
    letter-spacing: 0.12em;
  }
  .c-post-content table tbody td,
  body.post-type-news table tbody td {
    height: 45px !important;
    font-size: 13px;
    letter-spacing: 0.12em;
  }
}

.c-post-content {
  padding-bottom: 80px;
}
.c-post-content #ez-toc-container {
  margin-bottom: 59px;
  padding: 40px 40px 24px;
  background: #edfaeb;
}
.c-post-content #ez-toc-container .ez-toc-title {
  color: #36b02b;
  font: 500 24px "Lato", sans-serif;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: capitalize;
}
.c-post-content #ez-toc-container .ez-toc-title::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 17px;
  margin-right: 9px;
  background: url(../img/news/icon-toc.png) center/cover no-repeat;
}
.c-post-content #ez-toc-container nav {
  padding-left: 28px;
}
.c-post-content #ez-toc-container nav ul {
  counter-reset: num;
  margin: 0;
  padding: 0;
}
.c-post-content #ez-toc-container nav ul li {
  padding-left: 0;
}
.c-post-content #ez-toc-container nav ul li::before {
  content: none;
}
.c-post-content #ez-toc-container nav ul li.ez-toc-page-1 {
  margin-bottom: 19px;
}
.c-post-content #ez-toc-container nav ul li.ez-toc-page-1:last-child {
  margin-bottom: 0;
}
.c-post-content #ez-toc-container nav ul li a {
  display: inline-block;
  color: #222;
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.12em;
  line-height: 1.8;
  margin-bottom: 10px;
  text-decoration: none;
}
.c-post-content #ez-toc-container nav ul li a::before {
  counter-increment: num;
  content: counters(num, ".");
  color: #36b02b;
  font: 500 18px "Lato", sans-serif;
  letter-spacing: 0.04em;
  margin-right: 4px;
}
.c-post-content #ez-toc-container nav ul li a.ez-toc-heading-1::before {
  content: counters(num, ".") ".";
}
.c-post-content #ez-toc-container nav ul li ul {
  margin-left: 22px;
}
.c-post-content h2, .c-post-content h3, .c-post-content h4, .c-post-content h5 {
  position: relative;
}
.c-post-content h2 .ez-toc-section, .c-post-content h3 .ez-toc-section, .c-post-content h4 .ez-toc-section, .c-post-content h5 .ez-toc-section {
  position: absolute;
  top: -1px;
}
.c-post-content .linkcard {
  background: #fff;
  border: solid 1px #c6c6c6;
  margin-bottom: 40px;
}
.c-post-content .linkcard .lkc-internal-wrap,
.c-post-content .linkcard .lkc-external-wrap {
  width: 100%;
  height: 100;
  position: relative;
}
.c-post-content .linkcard .lkc-internal-wrap::after,
.c-post-content .linkcard .lkc-external-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  display: block;
  background: center/contain no-repeat;
}
.c-post-content .linkcard .lkc-internal-wrap::after {
  width: 30px;
  height: 30px;
  background-image: url(../img/news/icon-internal.png);
}
.c-post-content .linkcard .lkc-external-wrap::after {
  width: 29px;
  height: 29px;
  background-image: url(../img/news/icon-external.png);
}
.c-post-content .linkcard .lkc-link,
.c-post-content .linkcard .lkc-unlink {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: unset;
}
.c-post-content .linkcard .lkc-link {
  transition: background-color 0.2s;
}
.c-post-content .linkcard .lkc-link:hover {
  background-color: #fafafa;
  opacity: 1;
}
.c-post-content .linkcard .lkc-card {
  width: 100%;
  height: 100%;
}
.c-post-content .linkcard .lkc-info {
  display: none;
}
.c-post-content .linkcard .lkc-content {
  display: grid;
  grid-template-columns: 180px minmax(auto, 426px);
  -moz-column-gap: 25px;
       column-gap: 25px;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 18px 80px 20px 16px;
}
.c-post-content .linkcard .lkc-thumbnail {
  grid-column: 1/2;
  grid-row: 1/4;
  width: 180px;
  height: 120px;
}
.c-post-content .linkcard .lkc-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-post-content .linkcard .lkc-title {
  grid-column: 2/3;
  grid-row: 1/2;
  min-width: 0;
  margin: 10px 0 3px;
}
.c-post-content .linkcard .lkc-title-text {
  color: #000;
  letter-spacing: 0.12em;
}
.c-post-content .linkcard .lkc-title-text::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 2px;
  background: #36b02b;
  margin-right: 10px;
}
.c-post-content .linkcard .lkc-url {
  grid-column: 2/3;
  grid-row: 2/3;
  color: #36b02b;
  font: 12px "Lato", sans-serif;
  letter-spacing: 0.04em;
}
.c-post-content .linkcard .lkc-excerpt {
  grid-column: 2/3;
  grid-row: 3/4;
  color: #000;
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-bottom: 5px;
}
.c-post-content .linkcard .lkc-title-text,
.c-post-content .linkcard .lkc-url,
.c-post-content .linkcard .lkc-excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .c-post-content {
    padding-bottom: 40px;
  }
  .c-post-content #ez-toc-container {
    margin-bottom: 40px;
    padding: 15px 20px 15px;
  }
  .c-post-content #ez-toc-container .ez-toc-title {
    font-size: 18px;
    letter-spacing: 0.04em;
    margin-bottom: 5px;
  }
  .c-post-content #ez-toc-container .ez-toc-title::before {
    width: 16px;
    height: 14px;
    margin-right: 6px;
  }
  .c-post-content #ez-toc-container nav {
    padding-left: 0;
  }
  .c-post-content #ez-toc-container nav ul li.ez-toc-page-1 {
    margin-bottom: 15px;
  }
  .c-post-content #ez-toc-container nav ul li a {
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
  }
  .c-post-content #ez-toc-container nav ul li a::before {
    font-size: 16px;
    letter-spacing: 0.04em;
  }
  .c-post-content #ez-toc-container nav ul li ul {
    margin-left: 12px;
  }
  .c-post-content .linkcard {
    margin-bottom: 20px;
  }
  .c-post-content .linkcard .lkc-internal-wrap,
  .c-post-content .linkcard .lkc-external-wrap {
    width: 100%;
    height: 100;
    position: relative;
  }
  .c-post-content .linkcard .lkc-internal-wrap::after,
  .c-post-content .linkcard .lkc-external-wrap::after {
    right: 10px;
  }
  .c-post-content .linkcard .lkc-internal-wrap::after {
    width: 18px;
    height: 18px;
  }
  .c-post-content .linkcard .lkc-external-wrap::after {
    width: 17px;
    height: 17px;
  }
  .c-post-content .linkcard .lkc-content {
    grid-template-columns: 60px minmax(120px, auto);
    -moz-column-gap: 10px;
         column-gap: 10px;
    padding: 10px 30px 10px 10px;
  }
  .c-post-content .linkcard .lkc-thumbnail {
    grid-column: 1/2;
    grid-row: 1/3;
    width: 60px;
    height: 60px;
  }
  .c-post-content .linkcard .lkc-title {
    grid-column: 2/3;
    grid-row: 1/2;
    margin: 0 0 5px;
  }
  .c-post-content .linkcard .lkc-title-text {
    font-size: 12px;
    letter-spacing: 0.12em;
  }
  .c-post-content .linkcard .lkc-title-text::before {
    width: 10px;
    margin-right: 6px;
  }
  .c-post-content .linkcard .lkc-url {
    font-size: 10px;
    letter-spacing: 0.04em;
  }
  .c-post-content .linkcard .lkc-excerpt {
    grid-column: 1/3;
    grid-row: 3/4;
    font-size: 12px;
    padding-top: 5px;
    margin-bottom: 0;
  }
}

.c-service-scene__ttl {
  max-width: 1240px;
  margin: 0 auto 36px;
  padding: 0 20px;
}
.c-service-scene__content {
  max-width: 1250px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
.c-service-scene__box {
  width: 200px;
  margin: 0 25px 20px;
}
.c-service-scene__head {
  margin-bottom: 10px;
}
.c-service-scene__head img {
  width: 100%;
  display: block;
  margin-bottom: 6px;
}
.c-service-scene__subttl {
  display: block;
  font-size: 24px;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  line-height: 1.8;
  text-align: center;
  white-space: nowrap;
}
.c-service-scene__list {
  padding: 15px 20px;
  background: #FFF;
  border: 1px dashed #36b02b;
}
.c-service-scene__item {
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  position: relative;
  padding-left: 10px;
}
.c-service-scene__item::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  background: #36b02b;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 0;
}
.c-service-scene__item + .c-service-scene__item {
  margin-top: 4px;
}
@media (max-width: 1300px) {
  .c-service-scene__content {
    max-width: 900px;
  }
}
@media screen and (max-width: 750px) {
  .c-service-scene__ttl {
    margin-bottom: 20px;
  }
  .c-service-scene__content {
    max-width: 100%;
    padding: 0 20px;
  }
  .c-service-scene__box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin: 0 0 22px;
  }
  .c-service-scene__box.box01 {
    margin-bottom: 5px;
  }
  .c-service-scene__box.box03 {
    margin-bottom: 23px;
  }
  .c-service-scene__head {
    width: 100px;
    margin: 0 16px 0 0;
  }
  .c-service-scene__head img {
    width: 100%;
    display: block;
    margin-bottom: 7px;
  }
  .c-service-scene__subttl {
    font-size: 18px;
    line-height: 1.4;
  }
  .c-service-scene__list {
    width: calc(100% - 116px);
  }
  .c-service-scene__item {
    padding-left: 16px;
    font-size: 16px;
    line-height: 1.6;
  }
  .c-service-scene__item + .c-service-scene__item {
    margin-top: 0;
  }
}

.c-service-worry {
  padding: 65px 0 102px;
  background: url(../img/service/arrow-bg.jpg) center/cover no-repeat;
  position: relative;
  z-index: 0;
}
.c-service-worry::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.c-service-worry__content {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 20px;
}
.c-service-worry__ttl {
  margin-bottom: 50px;
  font-size: 48px;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: #fff;
  text-align: center;
}
.c-service-worry__ttl .txt--large {
  font-size: 68px;
  letter-spacing: 0.02em;
}
.c-service-worry__ttl .txt--green {
  color: #3ecc31;
}
.c-service-worry__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.c-service-worry__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 285px;
  height: 120px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  line-height: 1.3636363636;
  margin: 0 10.5px 29px;
  padding: 26px 10px 27px;
  text-align: center;
}
.c-service-worry__item::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 89%;
  height: 50%;
  box-sizing: border-box;
  border: solid 2px #fff;
  border-width: 2px 2px 0 0;
  border-top-right-radius: 10px;
}
.c-service-worry__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 74%;
  box-sizing: border-box;
  border: solid 2px #fff;
  border-width: 0 2px 2px 2px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.c-service-worry__item .check {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/service/check-icon.png) center/cover no-repeat;
  top: -3px;
  left: -3px;
  border-radius: 50%;
}
.c-service-worry__item-wrap span {
  color: #3ecc31;
}
@media screen and (max-width: 1200px) {
  .c-service-worry__ttl {
    font-size: 36px;
  }
  .c-service-worry__ttl .txt--large {
    font-size: 48px;
  }
}
@media screen and (max-width: 959px) {
  .c-service-worry__ttl {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 1.1;
  }
  .c-service-worry__ttl .txt--large {
    font-size: 40px;
  }
  .c-service-worry__content {
    padding: 0 13px;
  }
  .c-service-worry__item {
    width: 160px;
    min-height: 143px;
    line-height: 1.5;
    margin: 0 7px 20px;
    padding: 47px 5px;
  }
  .c-service-worry__item::before {
    width: 85%;
  }
  .c-service-worry__item::after {
    height: 86%;
  }
  .c-service-worry__item .check {
    left: -2px;
    width: 17px;
    height: 17px;
  }
}
@media screen and (max-width: 750px) {
  .c-service-worry__item {
    font-size: 16px;
  }
  .c-service-worry__item::before {
    border-top-right-radius: 5px;
  }
  .c-service-worry__item::after {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}

.c-case__content {
  display: flex;
}
.c-case__box {
  width: 370px !important;
  margin: 0 22.5px;
  background: #fff;
  position: relative;
  z-index: 0;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.c-case__box a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.c-case__box:hover {
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
}
.c-case__cat {
  padding: 2px 11px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(to left, #4dc810, #009220);
  position: absolute;
  top: 5px;
  left: -10px;
  z-index: 1;
}
.c-case__cat::before {
  content: "";
  display: inline-block;
  border-right: 10px solid #005813;
  border-bottom: 10px solid rgba(0, 0, 0, 0);
  position: absolute;
  top: 36px;
  left: 0px;
}
.c-case__thum {
  width: 100%;
  padding-top: 66.7567567568%;
  position: relative;
  overflow: hidden;
}
.c-case__thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.c-case__desc {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 15px 15px;
}
.c-case .c-button {
  height: 70px;
  margin: 40px auto 0;
  padding-right: 1%;
}
.c-case .c-button::before {
  right: 18px;
}
.c-case .c-button:hover::before {
  right: 12px;
}
.c-case .slick-slider {
  position: relative;
}
.c-case .slick-list {
  display: flex;
  overflow: visible;
}
.c-case .slick-track {
  display: flex;
}
.c-case .slick-slide {
  opacity: 0.5;
}
.c-case .slick-slide.slick-active {
  opacity: 1;
}
.c-case .slick-arrow {
  width: 60px;
  height: 60px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: calc(50% - 30px);
  z-index: 1;
  cursor: pointer;
}
.c-case .slick-arrow--prev {
  background-image: url(../img/common/c-case-arrow-l.png);
  left: -30px;
}
.c-case .slick-arrow--next {
  background-image: url(../img/common/c-case-arrow-r.png);
  right: -30px;
}
.c-case .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
}
.c-case .slick-dots li {
  width: 10px;
  height: 10px;
  display: block;
  margin: 0 6px;
  background: #ccc;
  border-radius: 50%;
}
.c-case .slick-dots li button {
  display: none;
}
.c-case .slick-dots li.slick-active {
  background: #36b02b;
}
@media (max-width: 1300px) {
  .c-case__box {
    width: calc((100vw - 130px) / 3) !important;
  }
  .c-case .slick-arrow--prev {
    left: -15px;
  }
  .c-case .slick-arrow--next {
    right: -15px;
  }
}
@media screen and (max-width: 959px) {
  .c-case__box {
    width: calc((100vw - 80px) / 3) !important;
    margin: 0 10px;
  }
  .c-case .slick-arrow {
    width: 40px;
    height: 40px;
    top: calc(46.4% - 20px);
  }
  .c-case .c-button {
    max-width: 315px;
    height: 50px;
    padding-right: 0;
  }
  .c-case .c-button::before {
    right: 9px;
  }
}
@media screen and (min-width: 751px) {
  .c-case .slick-track.center {
    justify-content: center;
    transform: none !important;
  }
}
@media screen and (max-width: 750px) {
  .c-case__box {
    width: 315px !important;
    box-shadow: 4px 0 8px rgba(0, 0, 0, 0.06);
  }
  .c-case__thum {
    padding-top: 66.9841269841%;
  }
  .c-case__desc {
    padding: 16px 13px 9px;
  }
  .c-case__cat {
    padding: 1.5px 9px;
    font-size: 12px;
    top: 7px;
    left: -7px;
  }
  .c-case__cat::before {
    border-right: 7px solid #005813;
    border-bottom: 7px solid rgba(0, 0, 0, 0);
    top: 27px;
  }
}

.c-case-head {
  padding: 0 14px;
  margin-bottom: 20px;
}
.c-case-head__date {
  display: block;
  margin-bottom: 10px;
  font: 700 14px "Lato", sans-serif;
  color: #36b02b;
  letter-spacing: 0.04em;
}
.c-case-head__ttl {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
  font-size: 20px;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  line-height: 1.5;
  max-height: 3em;
}
@media screen and (max-width: 959px) {
  .c-case-head {
    padding: 0 12px;
  }
  .c-case-head__date {
    margin-bottom: 6px;
    font-size: 14px;
  }
  .c-case-head__ttl {
    font-size: 18px;
    line-height: 1.4444444444;
  }
}
@media screen and (max-width: 750px) {
  .c-case-head {
    margin-bottom: 14px;
  }
}

.c-case-area {
  display: grid;
  grid-template-columns: auto auto auto auto;
  margin-top: auto;
  padding: 15px 3px 15px 15px;
  border-top: dashed 1px #b2b2b2;
}
.c-case-area dt,
.c-case-area dd {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}
.c-case-area dt {
  min-width: 84px;
  padding: 0 10px 1px;
  background: #ebf7e9;
  font-weight: 700;
  color: #36b02b;
  justify-content: center;
}
.c-case-area dd {
  padding: 0 3px 0 8px;
  line-height: 1.3;
}
.c-case-area .price {
  font: 16px "Lato", sans-serif;
}
@media (max-width: 1300px) {
  .c-case-area {
    grid-template-columns: 94px auto;
    gap: 5px 0;
  }
}
@media screen and (max-width: 750px) {
  .c-case-area {
    grid-template-columns: 79.5px auto 72.5px auto;
    padding-left: 0;
    gap: 0;
  }
  .c-case-area dt,
  .c-case-area dd {
    font-size: 12px;
  }
  .c-case-area dt {
    min-width: 72.5px;
    padding: 0 5px 1px;
  }
  .c-case-area dd {
    padding: 0 1px 0 5px;
  }
  .c-case-area dd .price {
    font-size: 14px;
  }
}

.c-pagenav {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  align-items: center;
}
.c-pagenav__prev {
  padding: 0 43px 0 8px;
}
.c-pagenav__next {
  padding: 0 8px 0 43px;
}
.c-pagenav__prev a, .c-pagenav__next a {
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}
.c-pagenav__prev a:hover, .c-pagenav__next a:hover {
  opacity: 0.7;
}
.c-pagenav__arrow {
  display: block;
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  background: #36b02b;
  transform: rotate(45deg);
}
.c-pagenav__arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
}
.c-pagenav__prev .c-pagenav__arrow {
  margin-right: auto;
}
.c-pagenav__prev .c-pagenav__arrow::after {
  background: url(../img/common/page-arrow-prev.svg) left 40% center/11px no-repeat;
}
.c-pagenav__next .c-pagenav__arrow {
  margin-left: auto;
}
.c-pagenav__next .c-pagenav__arrow::after {
  background: url(../img/common/page-arrow-next.svg) right 40% center/11px no-repeat;
}
.c-pagenav__ttl {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
  line-height: 1.75;
  padding-bottom: 5px;
  text-decoration: underline;
  text-underline-offset: 9px;
}
.c-pagenav__prev .c-pagenav__ttl {
  margin-left: 20px;
}
.c-pagenav__next .c-pagenav__ttl {
  margin-right: 20px;
}
@media screen and (max-width: 750px) {
  .c-pagenav {
    grid-template-columns: 1fr 1fr;
    gap: 27px 57px;
    margin-top: 30px;
  }
  .c-pagenav__prev {
    grid-row: 1/2;
    grid-column: 1/2;
    padding: 0 0 0 0;
  }
  .c-pagenav__next {
    grid-row: 1/2;
    grid-column: 2/3;
    padding: 0 0 0 0;
  }
  .c-pagenav__back {
    grid-row: 2/3;
    grid-column: 1/3;
  }
  .c-pagenav__back .c-button {
    margin: 0 auto;
  }
  .c-pagenav__arrow {
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
  }
  .c-pagenav__prev .c-pagenav__arrow {
    margin: 0 auto 0 -3px;
  }
  .c-pagenav__prev .c-pagenav__arrow::after {
    background-size: 9px;
  }
  .c-pagenav__next .c-pagenav__arrow {
    margin: 0 -3px 0 auto;
  }
  .c-pagenav__next .c-pagenav__arrow::after {
    background-size: 9px;
  }
  .c-pagenav__ttl {
    font-size: 13px;
    line-height: 1.8846153846;
    padding-bottom: 5px;
    text-underline-offset: 8px;
  }
  .c-pagenav__prev .c-pagenav__ttl {
    margin-left: 12px;
  }
  .c-pagenav__next .c-pagenav__ttl {
    margin-right: 12px;
  }
}

.c-page-bnr {
  max-width: 1200px;
  background: center/cover no-repeat;
  color: #fff;
  font-feature-settings: "palt";
  margin: 0 auto;
  text-align: center;
}
.c-page-bnr--service {
  background-image: url(../img/common/bnr-bg_service.jpg);
}
.c-page-bnr--faq {
  background-image: url(../img/common/bnr-bg_faq.jpg);
}
.c-page-bnr--download {
  background-image: url(../img/service/download_bg.jpg);
}
.c-page-bnr a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 52px 0 40px;
}
.c-page-bnr__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: 0.3s;
}
.c-page-bnr__ttl {
  padding-bottom: 0;
}
.c-page-bnr__ttl .en-small {
  font-size: 18px;
  font-weight: 700;
}
.c-page-bnr__ttl .jp {
  font-size: 48px;
  color: #fff;
}
.c-page-bnr__ttl .jp .dl-icon {
  width: 33px;
  height: 45px;
  font-size: 48px;
  line-height: 1.6;
  margin-right: 16px;
  vertical-align: -5%;
}
.c-page-bnr__ttl::before {
  content: none;
}
.c-page-bnr__txt {
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-bottom: 23px;
}
.c-page-bnr__btn {
  width: 310px;
  height: 50px;
  border: 1px solid #fff;
  background: transparent;
  font-size: 16px;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.c-page-bnr__btn::before {
  background: url("../img/common/arrows-icon-g.png") no-repeat;
  background-size: 100%;
}
a:hover .c-page-bnr__btn {
  background: #fff;
  opacity: 1;
  color: #36b02b;
}
a:hover .c-page-bnr__btn::before {
  right: 8px;
}
a:hover .c-page-bnr__bg {
  opacity: 0.4;
}
@media screen and (max-width: 1200px) {
  .c-page-bnr__ttl .jp {
    font-size: 36px;
  }
}
@media screen and (max-width: 750px) {
  .c-page-bnr--service {
    background-image: url("../img/common/bnr-bg_service-sp.jpg");
  }
  .c-page-bnr--faq {
    background-image: url("../img/common/bnr-bg_faq-sp.jpg");
  }
  .c-page-bnr a {
    padding: 26px 0 30px;
  }
  .c-page-bnr__ttl {
    padding-bottom: 0;
  }
  .c-page-bnr__ttl .en-small {
    font-size: 14px;
    margin-bottom: 3px;
  }
  .c-page-bnr__ttl .jp {
    font-size: 30px;
    margin-bottom: 6px;
  }
  .c-page-bnr__ttl .jp .dl-icon {
    width: 24px;
    height: 30px;
    margin-right: 12px;
  }
  .c-page-bnr__txt {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 19px;
  }
  .c-page-bnr__btn {
    width: 265px;
    height: 43px;
    border: 2px solid #fff;
  }
}
