/******************************************************************
 * 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%;
}

/* 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;
}

.c-fadein {
  opacity: 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;
  transition: transform ease-out 0.5s, opacity ease-out 0.5s;
}

.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: clip-path 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

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

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

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

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

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

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

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

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

.c-ttl {
  text-align: center;
  color: #77b8f5;
}
.c-ttl--l {
  text-align: left;
}
.c-ttl--w {
  color: #fff;
}
.c-ttl__en {
  font: 600 100px "Outfit", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
}
.c-ttl__jp {
  margin-top: 6px;
  font: 700 22px dnp-shuei-gothic-kin-std, sans-serif;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.c-btn {
  width: 259px;
  height: 69px;
  display: flex;
  align-items: center;
  padding: 15px 57px;
  background: #77b8f5;
  border-radius: 100px;
  font: 700 20px dnp-shuei-gothic-kin-std, sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  position: relative;
}
.c-btn:is(a) {
  transition: opacity 0.2s ease;
}
.c-btn:is(a):hover {
  opacity: 0.7;
}
.c-btn--w {
  background: #fff;
  color: #77b8f5;
}
.c-btn::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 34px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 24px;
  left: auto;
  transform: translateY(-50%);
}
.c-btn--w::before {
  background: #77b8f5;
}
.c-btn::after {
  content: "";
  display: block;
  border-top: 8px solid rgba(0, 0, 0, 0);
  border-left: 8px solid #77b8f5;
  border-bottom: 8px solid rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  right: 35px;
  left: auto;
  transform: translateY(-50%);
}
.c-btn--w::after {
  border-left-color: #fff;
}

.c-contact {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.c-mail {
  width: 100%;
  max-width: 200px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 0.5294117647em;
       column-gap: 0.5294117647em;
  padding-right: 1.0588235294em;
  padding-left: 1.6470588235em;
  background: linear-gradient(-90deg, rgba(248, 152, 146, 0.99608) 0%, rgb(248, 169, 135) 100%);
  font: 700 17px dnp-shuei-gothic-kin-std, sans-serif;
  letter-spacing: 0.05em;
  color: #fff;
  border-radius: 100px;
  transition: opacity 0.2s ease;
}
.c-mail:hover {
  opacity: 0.7;
}
.c-mail--l {
  -moz-column-gap: 16px;
       column-gap: 16px;
  max-width: 369.17px;
  height: 95px;
  padding-left: 65px;
  font-size: 27px;
  letter-spacing: 0.025em;
}
.c-mail::before {
  content: "";
  width: 1.1764705882em;
  height: 0.9411764706em;
  display: block;
  background: url(../img/common/mail-icon.png) center/cover no-repeat;
}
.c-mail--l::before {
  width: 39px;
  height: 31px;
}
.c-mail span {
  padding-left: 0.5294117647em;
  position: relative;
}
.c-mail span::after {
  content: "";
  width: 1px;
  height: 1.4705882353em;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-mail--l span {
  padding-left: 16px;
}
.c-mail--l span::after {
  height: 31px;
}

.c-tel {
  width: 100%;
  max-width: 200px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 0.5625em;
       column-gap: 0.5625em;
  padding-inline: 1.125em;
  background: linear-gradient(-90deg, rgba(218, 160, 77, 0.99608) 0%, rgb(241, 190, 117) 0%, rgb(248, 165, 118) 100%);
  font: 700 16px dnp-shuei-gothic-kin-std, sans-serif;
  letter-spacing: 0.05em;
  color: #fff;
  border-radius: 100px;
  transition: opacity 0.2s ease;
}
.c-tel:hover {
  opacity: 0.7;
}
.c-tel--l {
  -moz-column-gap: 16px;
       column-gap: 16px;
  max-width: 369.17px;
  height: 95px;
  padding-left: 51px;
  font-size: 26.92px;
  letter-spacing: 0.05em;
}
.c-tel::before {
  content: "";
  width: 0.9375em;
  height: 1.5625em;
  display: block;
  background: url(../img/common/tel-icon.png) center/cover no-repeat;
}
.c-tel--l::before {
  width: 23px;
  height: 39px;
  margin-bottom: 4px;
}
.c-tel span {
  padding-left: 0.5em;
  position: relative;
}
.c-tel span::after {
  content: "";
  width: 1px;
  height: 1.5625em;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-tel--l span {
  padding-left: 16px;
}
.c-tel--l span::after {
  height: 31px;
}

.c-content {
  display: block;
  background: #fff;
  border-radius: 80px;
}
.c-content__head {
  padding: 117px 8px 26.5px;
}
.c-content__body {
  padding-inline: 8px;
  border-top: 2px solid #77b8f5;
}

.c-pagetop {
  opacity: 0;
  visibility: hidden;
  display: block;
  width: 80px;
  filter: drop-shadow(0 6px 14px rgba(37, 41, 50, 0.05));
  transition: all 0.4s ease-out;
}

.scroll-triggered .c-pagetop {
  opacity: 1;
  visibility: visible;
}

body {
  color: #153576;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  letter-spacing: 0;
  line-height: 2.0588235294;
  min-width: 375px;
  scroll-behavior: auto !important;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: visible;
}

.inner {
  width: 100%;
  max-width: calc(1800px + 16px);
  margin: 0 auto;
  padding: 0 8px;
}

.header {
  width: 100%;
}
.header__content {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease-out;
  z-index: 100;
}
.header__menu {
  padding: 7.5px 24px 13px 26px;
  background: #fff;
  box-shadow: 0 1px 14px 6px rgba(37, 41, 50, 0.05);
  border-radius: 100px;
}
.header__menu .globalMenu__logo {
  padding-top: 0;
}
.header__menu .globalMenu__nav {
  padding-top: 4px;
}
.header__menu .globalMenu__list {
  padding-top: 8px;
}

.globalMenu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.globalMenu__head {
  flex: 0 0 95px;
}
.globalMenu__logo {
  padding-top: 3px;
}
.globalMenu__logo a {
  transition: opacity 0.2s ease;
}
.globalMenu__logo a:hover {
  opacity: 0.7;
}
.globalMenu__logo img {
  width: 100%;
  max-width: 95px;
  -o-object-fit: contain;
     object-fit: contain;
}
.globalMenu__nav {
  display: none;
}
.globalMenu__list {
  width: 100%;
  max-width: 728px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  -moz-column-gap: 1em;
       column-gap: 1em;
  padding-top: 5px;
}
.globalMenu__item {
  white-space: nowrap;
  font: 700 16px dnp-shuei-gothic-kin-std, sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.globalMenu__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.2s ease;
}
.globalMenu__item a:hover {
  opacity: 0.7;
}
.globalMenu__item span {
  margin-top: 0.1875em;
  font-weight: 600;
  font-size: 0.8125em;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #5c89dd;
}
.globalMenu__item:hover .globalMenu-child {
  opacity: 1;
  visibility: visible;
}

.globalMenu-child {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
.globalMenu-child__list {
  width: 200px;
  margin-top: 25px;
  padding: 7px 10px 8px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 14px 6px rgba(37, 41, 50, 0.05);
}
.globalMenu-child__item {
  padding: 13.5px 0;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.globalMenu-child__item:not(:first-child) {
  border-top: solid 1px #d6e3ef;
}

.navToggle {
  display: block;
  width: 45px;
  height: 45px;
  background: linear-gradient(0deg, #66a0e8, #a3d5ee);
  border-radius: 5px;
  position: fixed;
  top: 20px;
  left: auto;
  right: 29px;
  z-index: 101;
}
.navToggle span {
  position: absolute;
  top: 48%;
  left: 0;
  right: 0;
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  margin: auto;
  transition: 0.2s;
}
.navToggle span:nth-child(1) {
  transform: translateY(-7.5px);
}
.navToggle span:nth-child(3) {
  transform: translateY(7.5px);
}

.nav-open .navToggle span:nth-child(1) {
  transform: rotate(45deg);
}
.nav-open .navToggle span:nth-child(2) {
  transform: scaleX(0);
}
.nav-open .navToggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.sp-globalMenu {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(1.0714285714rem);
          backdrop-filter: blur(1.0714285714rem);
  position: fixed;
  top: 0;
  left: auto;
  right: -100vw;
  z-index: 100;
  transition: all 0.4s ease-out;
}
.sp-globalMenu__logo {
  padding: 20px 29px 0;
}
.sp-globalMenu__logo img {
  max-width: 95px;
}
.sp-globalMenu__nav {
  padding: 44.5px 20px;
}
.sp-globalMenu__list {
  padding-inline: 5px;
  font: 700 16px dnp-shuei-gothic-kin-std, sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.5;
}
.sp-globalMenu__item:not(:last-child) {
  border-bottom: 1px solid #e9f0f6;
}
.sp-globalMenu__item > a {
  display: block;
  width: 100%;
  padding: 12px 45px 11.5px 22px;
  position: relative;
}
.sp-globalMenu__item > a::before {
  content: "";
  display: block;
  width: 8px;
  height: 13px;
  background: url(../img/common/arrow.png) center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 30px;
  left: auto;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.sp-globalMenu__item > a.open::before {
  transform: translateY(-50%) rotate(90deg);
}
.sp-globalMenu__item > button {
  position: absolute;
  top: 50%;
  right: 37.5px;
  left: auto;
  transform: translateY(-50%);
}
.sp-globalMenu__contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: -moz-fit-content;
  width: fit-content;
  -moz-column-gap: 5px;
       column-gap: 5px;
  justify-content: center;
  margin: 74.5px auto 0;
}
.sp-globalMenu .c-mail {
  -moz-column-gap: 5px;
       column-gap: 5px;
  height: 55px;
  padding-right: 10px;
  padding-left: 17px;
  font-size: 14.5px;
}
.sp-globalMenu .c-mail::before {
  width: 16px;
  height: 14px;
  margin-bottom: 1px;
}
.sp-globalMenu .c-mail span {
  padding-left: 7px;
}
.sp-globalMenu .c-tel {
  -moz-column-gap: 5px;
       column-gap: 5px;
  height: 55px;
  padding-inline: 10px;
  font-size: 14.5px;
}
.sp-globalMenu .c-tel::before {
  width: 11px;
  height: 19px;
  margin-bottom: 1px;
}
.sp-globalMenu .c-tel span {
  padding-left: 8px;
}

.nav-open .sp-globalMenu {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.sp-globalMenu-child {
  margin: 2px 0 12px 23px;
  font: 700 15px dnp-shuei-gothic-kin-std, sans-serif;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
.sp-globalMenu-child__item:not(:first-child) {
  margin-top: 13px;
}
.sp-globalMenu-child__item a {
  padding-left: 13.5px;
  position: relative;
}
.sp-globalMenu-child__item a::before {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background: #d6e3ef;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.footer {
  width: 100%;
}

.footer-floatbnr {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 3px;
  position: fixed;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  transition: all 0.4s ease-out;
  z-index: 99;
}
.footer-floatbnr__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  -moz-column-gap: 4px;
       column-gap: 4px;
}

.js-floatbnr {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease-out;
}
.js-floatbnr:not(.show) {
  opacity: 0;
  visibility: hidden;
}

.footer-entry {
  background: url(../img/common/footer-entry-bg.jpg) 50% 0/cover no-repeat;
  padding: 135px 0 80px;
}
.footer-entry__content {
  width: 100%;
  max-width: 1250px;
  background: rgba(255, 255, 255, 0.82);
  margin: 83px auto 0;
  padding: 98px 8px 82px;
  border-radius: 299px;
  position: relative;
}
.footer-entry__en {
  width: 100%;
  max-width: 581px;
  position: absolute;
  top: -16.6%;
  left: 49.95%;
  transform: translateX(-50%);
}
.footer-entry__en img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-entry__ttl {
  font: 700 35px dnp-shuei-gothic-kin-std, sans-serif;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  text-align: center;
}
.footer-entry__txt {
  margin-top: 18.5px;
  font-weight: 500;
  line-height: 2.0588235294;
  letter-spacing: 0;
  text-align: center;
}
.footer-entry .c-contact {
  margin-top: 44.5px;
  -moz-column-gap: 12px;
       column-gap: 12px;
}

.footer-copy {
  width: 100%;
  background: #6da1e1;
  padding: 12px 15px 14px 32px;
  font: 400 14px dnp-shuei-gothic-kin-std, sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}
.footer-copy img {
  width: 87.5px;
}
@media screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 960px) {
  .pc-none {
    display: none !important;
  }
  .c-fadein.sp-only,
  .c-slidein.sp-only,
  .c-reveal.sp-only {
    opacity: 1;
    transform: none;
  }
  .footer-floatbnr {
    right: 15px;
    bottom: 15px;
  }
  .footer-floatbnr .c-pagetop {
    margin-right: 4px;
  }
  .footer-entry .c-ttl__jp {
    margin-top: 13px;
    font-size: 20.01px;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 1201px) {
  .scroll-triggered .header__content {
    opacity: 1;
    visibility: visible;
    top: 15px;
  }
  .globalMenu__nav {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    -moz-column-gap: 4%;
         column-gap: 4%;
  }
  .globalMenu .c-contact {
    flex: 0 0 404px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .navToggle {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  .c-ttl__en {
    font-size: 80px;
  }
  .c-ttl__jp {
    font-size: 15px;
  }
  .c-btn {
    width: 200px;
    height: 55px;
    padding: 18px 26px;
    font-size: 14.5px;
  }
  .c-btn::before {
    max-width: 20px;
    right: 17px;
  }
  .c-btn::after {
    border-top-width: 6px;
    border-left-width: 6px;
    border-bottom-width: 6px;
    right: 23px;
  }
  .c-mail {
    -moz-column-gap: 9px;
         column-gap: 9px;
    max-width: 200px;
    height: 55px;
    padding-right: 18px;
    padding-left: 24px;
    font-size: 14.5px;
  }
  .c-mail::before {
    width: 18px;
    height: 15px;
  }
  .c-mail span {
    padding-left: 9px;
  }
  .c-mail span::after {
    height: 14px;
  }
  .c-tel {
    -moz-column-gap: 9px;
         column-gap: 9px;
    max-width: 200px;
    height: 55px;
    padding-right: 9px;
    padding-left: 12px;
    font-size: 14.5px;
  }
  .c-tel--l {
    padding-right: 18px;
    padding-left: 24px;
  }
  .c-tel::before {
    width: 12px;
    height: 20px;
  }
  .c-tel span {
    padding-left: 9px;
  }
  .c-tel span::after {
    height: 14px;
  }
  .c-pagetop {
    width: 60px;
  }
  body {
    font-size: 14.5px;
  }
  .globalMenu__head {
    width: 100%;
    position: relative;
  }
  .globalMenu__logo img {
    max-width: 60px;
  }
  .navToggle {
    top: 14.5px;
    left: auto;
    right: 16.5px;
  }
  .sp-globalMenu__logo {
    padding-top: 14.5px;
    padding-left: 10px;
  }
  .sp-globalMenu__logo img {
    max-width: 60px;
  }
  .sp-globalMenu__list {
    font-size: 14.5px;
  }
  .sp-globalMenu-child {
    font-size: 14px;
  }
  .footer-entry__en {
    max-width: 268px;
    top: -2%;
  }
  .footer-entry__ttl {
    font-size: 15px;
    line-height: 1.8;
  }
  .footer-entry .c-contact {
    margin-top: 41.5px;
  }
}
@media screen and (max-width: 959px) and (min-width: 751px) {
  .tb-none {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .sp-none {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .c-slidein {
    transition-duration: 0.4s;
  }
  .c-reveal {
    transition-duration: 0.4s;
  }
  .c-fadein.pc-only,
  .c-slidein.pc-only,
  .c-reveal.pc-only {
    opacity: 1;
    transform: none;
  }
  .c-ttl__en {
    font-size: 35px;
  }
  .c-content {
    border-radius: 19px;
  }
  .c-content__head {
    padding-top: 49px;
    padding-bottom: 4px;
  }
  .c-content__body {
    border-top-width: 1px;
  }
  .c-pagetop {
    width: 40px;
    margin-right: 3px;
  }
  .footer-floatbnr {
    row-gap: 7px;
  }
  .footer-floatbnr__content {
    width: 100%;
    max-width: 406px;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 6px;
         column-gap: 6px;
  }
  .footer-entry {
    background-image: url(../img/common/footer-entry-bg-sp.jpg);
    padding: 51px 0 56.5px;
  }
  .footer-entry__content {
    margin-top: 49.5px;
    padding-top: 85.5px;
    padding-bottom: 66.5px;
    border-radius: 1000px;
  }
  .footer-entry__txt {
    margin-top: 21px;
    padding-left: 6px;
  }
  .footer-entry .c-contact {
    flex-direction: column-reverse;
    align-items: center;
    row-gap: 6px;
  }
  .footer-copy {
    padding: 6.5px 7px;
    font-size: 7px;
  }
  .footer-copy img {
    width: 44px;
  }
}
