@charset "UTF-8";
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

html {
  font-size: 10px;
}

body {
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

.u-over {
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .u-over:hover {
    opacity: 0.7;
  }
}

.u-fade {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s;
}
.u-fade.is-fade {
  opacity: 1;
  transform: translateY(0);
}

.u-fadeNext {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s;
}
.u-fadeNext.is-fadeNext {
  opacity: 1;
  transform: translateY(0);
}

.u-imgCover {
  display: block;
  height: 0;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.l-container {
  max-width: 1096px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .l-container {
    max-width: 520px;
  }
}
.l-container.-lg {
  max-width: 1240;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 40px 20px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 30px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  background: #fff;
  text-align: left;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: -35px;
  right: 0;
  display: block;
  overflow: visible;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before,
.remodal-close:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: #fff;
}

.remodal-close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.remodal-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: #000;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: 25px;
}
.slick-prev:before {
  content: "＜";
}
[dir=rtl] .slick-prev:before {
  content: "＞";
}

.slick-next {
  right: 25px;
}
[dir=rtl] .slick-next {
  left: 25px;
  right: auto;
}
.slick-next:before {
  content: "＞";
}
[dir=rtl] .slick-next:before {
  content: "＜";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "●";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.home-kv__inner {
  position: relative;
}
.home-kv__logo {
  position: absolute;
  width: 85.5px;
  top: 40px;
  left: 45px;
}
@media screen and (max-width: 767px) {
  .home-kv__logo {
    width: 60px;
    top: 15px;
    left: 15px;
  }
}
.home-kv__logo a:hover {
  opacity: 1;
}

.home-read {
  position: relative;
}
.home-read::before, .home-read::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 576px) {
  .home-read::before, .home-read::after {
    height: 13px;
  }
}
.home-read::before {
  background-image: url(../img/home/bg-wave-top.png);
  top: -20px;
  left: 0;
}
@media screen and (max-width: 576px) {
  .home-read::before {
    top: -13px;
    background-image: url(../img/home/bg-wave-top-sp.png);
  }
}
.home-read::after {
  background-image: url(../img/home/bg-wave-bottom.png);
  bottom: -20px;
  left: 0;
}
@media screen and (max-width: 576px) {
  .home-read::after {
    bottom: -13px;
    background-image: url(../img/home/bg-wave-bottom-sp.png);
  }
}
.home-read__inner {
  padding: 50px 0 80px;
}
.home-read__txt {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 2;
  margin-bottom: 30px;
}
.home-read__txt sup {
  font-size: 60%;
}
@media screen and (max-width: 767px) {
  .home-read__txt {
    font-size: 16px;
  }
}
.home-read__txt b {
  color: #E60012;
}
.home-read__note {
  width: max-content;
  margin: 0 auto 75px;
}
@media screen and (max-width: 767px) {
  .home-read__note {
    width: auto;
  }
}
.home-read__note li {
  text-indent: -2.5em;
  padding-left: 2.5em;
}
.home-read__note li a {
  text-decoration: underline;
}
.home-read__btn a {
  display: block;
  width: 465px;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .home-read__btn a {
    width: 100%;
  }
}

.home-campain {
  position: relative;
}
.home-campain__bg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/home/bg-water.jpg);
  background-repeat: repeat-y;
  background-size: 100% auto;
  z-index: -2;
  opacity: 0.3;
}
.home-campain__inner {
  padding: 110px 0 75px;
}
@media screen and (max-width: 767px) {
  .home-campain__inner {
    padding: 65px 0 55px;
  }
}
.home-campain__box.-n1 {
  position: relative;
  padding-bottom: 252px;
}
.home-campain__area {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 7px 7px 0px 0px rgba(0, 0, 0, 0.2);
}
.home-campain__ttl {
  background-color: #FAE10A;
  border-radius: 16px 16px 0 0;
  padding-bottom: 10px;
}
.home-campain__ttlTtl {
  text-align: center;
}
.home-campain__ttlTtl img {
  width: 260px;
  margin-top: -30px;
}
.home-campain__cols {
  padding: 45px 0 45px 55px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .home-campain__cols {
    padding: 25px 25px 35px;
  }
}
.home-campain__sugoca {
  font-size: 28px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .home-campain__sugoca {
    font-size: 16px;
  }
}
.home-campain__sugoca img {
  width: 130px;
}
.home-campain__camtxt {
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .home-campain__camtxt {
    font-size: 16px;
  }
}
.home-campain__camtxt sup {
  font-size: 60%;
}
.home-campain__point {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .home-campain__point {
    margin-bottom: 25px;
  }
}
.home-campain__point.-n2 img {
  width: 91.18%;
}
@media screen and (max-width: 767px) {
  .home-campain__point.-n2 img {
    width: 100%;
  }
}
.home-campain__point img {
  width: 52.28%;
}
@media screen and (max-width: 767px) {
  .home-campain__point img {
    width: 100%;
  }
}
.home-campain__image {
  position: absolute;
  top: -30px;
  right: 30px;
  width: 37%;
}
@media screen and (max-width: 767px) {
  .home-campain__image {
    position: initial;
    width: 100%;
    text-align: center;
    margin-top: 25px;
  }
  .home-campain__image img {
    width: 90%;
  }
}
.home-campain__image.-n2 {
  width: 41.18%;
  top: 30px;
}
@media screen and (max-width: 999px) {
  .home-campain__image.-n2 {
    width: 29%;
  }
}
.home-campain__txt {
  font-size: 16px;
  font-weight: 500;
}
.home-campain__note li {
  text-indent: -2.5em;
  padding-left: 2.5em;
}
.home-campain__note li a {
  text-decoration: underline;
}
.home-campain__more {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 142.5px;
  z-index: -1;
}
.home-campain__btn {
  margin-top: 60px;
}
.home-campain__btn a {
  display: block;
  width: 465px;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .home-campain__btn a {
    width: 100%;
  }
}

.home-note {
  background-color: rgba(250, 225, 10, 0.15);
}
.home-note__inner {
  padding: 160px 0;
}
@media screen and (max-width: 767px) {
  .home-note__inner {
    padding: 30px 0;
  }
}
.home-note__area {
  background-color: #fff;
  padding: 55px 130px;
}
@media screen and (max-width: 767px) {
  .home-note__area {
    padding: 20px;
  }
}
.home-note__item:first-of-type {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .home-note__item:first-of-type {
    margin-bottom: 20px;
  }
}
.home-note__ttl {
  position: relative;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .home-note__ttl {
    font-size: 16px;
  }
}
.home-note__ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}
.home-note__ttl b {
  display: block;
  position: absolute;
  right: 3%;
  top: 30px;
}
@media screen and (max-width: 767px) {
  .home-note__ttl b {
    top: 20px;
  }
}
.home-note__ttl b i {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 17.5px;
  height: 17.5px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .home-note__ttl b i {
    width: 15px;
    height: 15px;
  }
}
.home-note__ttl b i:nth-child(1) {
  background-image: url(../img/home/list-open.svg);
}
.home-note__ttl b i:nth-child(2) {
  background-image: url(../img/home/list-close.svg);
  display: none;
}
.home-note__ttl.is-open b i:nth-child(1) {
  display: none;
}
.home-note__ttl.is-open b i:nth-child(2) {
  display: block;
}
.home-note__txtarea {
  padding: 40px 0;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .home-note__txtarea {
    font-size: 12px;
    padding: 20px 0;
  }
}
.home-note__txt li {
  text-indent: -1em;
  padding-left: 1em;
}
.home-note__txt a {
  text-decoration: underline;
}

.home-otoku {
  background-color: rgba(100, 194, 250, 0.17);
}
.home-otoku__inner {
  padding: 115px 0 180px;
}
@media screen and (max-width: 767px) {
  .home-otoku__inner {
    padding: 35px 0 45px;
  }
}
.home-otoku__ttl {
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .home-otoku__ttl {
    margin-bottom: 60px;
  }
}
.home-otoku__ttl img {
  width: 72%;
}
@media screen and (max-width: 767px) {
  .home-otoku__ttl img {
    width: 70.14%;
  }
}
.home-otoku__box {
  background-color: #fff;
  border-radius: 180px;
  padding-bottom: 75px;
  margin-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .home-otoku__box {
    border-radius: 100px;
    padding: 15px 25px 50px;
    margin-bottom: 60px;
  }
}
.home-otoku__box:last-of-type {
  margin-bottom: 0;
}
.home-otoku__txtarea {
  padding-left: 110px;
  position: relative;
  display: flex;
}
@media screen and (max-width: 767px) {
  .home-otoku__txtarea {
    flex-direction: column;
    padding-left: 0;
  }
}
.home-otoku__txtarea.-n1 {
  gap: 92px;
}
.home-otoku__txtarea.-n2 {
  justify-content: space-between;
  align-items: center;
}
.home-otoku__txtarea.-n3 {
  gap: 43px;
}
.home-otoku__cols {
  width: 57.05%;
}
@media screen and (max-width: 767px) {
  .home-otoku__cols {
    width: 100%;
  }
}
.home-otoku__name {
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .home-otoku__name {
    margin-bottom: 0;
  }
}
.home-otoku__name img {
  width: 83.5%;
  margin-top: -80px;
}
@media screen and (max-width: 767px) {
  .home-otoku__name img {
    width: 100%;
    margin-top: -60px;
  }
}
.home-otoku__point {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .home-otoku__point {
    margin-top: -30px;
    margin-bottom: 15px;
  }
}
.home-otoku__point.-n1 img {
  width: 85.72%;
}
@media screen and (max-width: 767px) {
  .home-otoku__point.-n1 img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .home-otoku__point.-n2 {
    margin-top: -10px;
  }
}
.home-otoku__point.-n2 img {
  width: 60.9%;
}
@media screen and (max-width: 767px) {
  .home-otoku__point.-n2 img {
    width: 100%;
  }
}
.home-otoku__point.-n3 img {
  width: 67.27%;
}
@media screen and (max-width: 767px) {
  .home-otoku__point.-n3 img {
    width: 100%;
  }
}
.home-otoku__txt {
  font-size: 16px;
}
.home-otoku__image.-n1 {
  top: -30%;
  right: 8%;
  width: 21%;
}
.home-otoku__image.-n2 {
  bottom: 0;
  right: 2%;
  width: 32.5%;
}
.home-otoku__image.-n3 {
  bottom: 0;
  right: 8%;
  width: 25.95%;
}

.home-app {
  background-color: rgba(250, 225, 10, 0.15);
}
.home-app__inner {
  padding: 180px 0 220px;
}
@media screen and (max-width: 767px) {
  .home-app__inner {
    padding: 45px 0 55px;
  }
}
.home-app__ttl {
  margin-bottom: 40px;
  text-align: center;
}
.home-app__ttl img {
  width: 77.18%;
}
.home-app__box {
  background-color: #fff;
  border-radius: 16px;
  padding: 70px 90px 70px 75px;
  display: flex;
  gap: 55px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .home-app__box {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 25px;
  }
}
.home-app__box:last-of-type {
  margin-bottom: 0;
}
.home-app__phone {
  width: 200px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .home-app__phone {
    width: 82px;
  }
}
.home-app__cols {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.home-app__name {
  margin-bottom: 20px;
}
.home-app__name.-n1 img {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .home-app__name.-n1 img {
    width: 100%;
  }
}
.home-app__name.-n2 img {
  width: 62%;
}
@media screen and (max-width: 767px) {
  .home-app__name.-n2 img {
    width: 100%;
  }
}
.home-app__txt {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .home-app__txt {
    font-size: 16px;
  }
}
.home-app__ind {
  font-size: 16px;
  text-indent: -13em;
  padding-left: 13em;
}
@media screen and (max-width: 767px) {
  .home-app__ind {
    text-indent: 0;
    padding-left: 0;
    margin-top: 10px;
    font-size: 15px;
  }
}
.home-app__sub {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .home-app__sub {
    font-size: 15px;
  }
}
.home-app__note {
  font-size: 14px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .home-app__note {
    font-size: 13px;
  }
}
.home-app__note li {
  text-indent: -1em;
  padding-left: 1em;
}
.home-app__btn {
  flex: 1;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .home-app__btn {
    margin-top: 30px;
  }
}
.home-app__btn a {
  display: block;
  width: 343.5px;
}
@media screen and (max-width: 767px) {
  .home-app__btn a {
    width: 100%;
  }
}

.home-foot__inner {
  position: relative;
  padding: 100px 0 40px;
}
@media screen and (max-width: 767px) {
  .home-foot__inner {
    padding: 45px 0 30px;
  }
}
.home-foot__logo {
  margin-bottom: 50px;
}
.home-foot__logo a {
  display: block;
  width: 70.5px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .home-foot__logo a {
    width: 45px;
  }
}
.home-foot__logo a:hover {
  opacity: 1;
}
.home-foot__copy {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .home-foot__copy {
    font-size: 10px;
  }
}
.home-foot__gotop {
  width: 118px;
  position: absolute;
  right: 0;
  top: -55px;
}
@media screen and (max-width: 767px) {
  .home-foot__gotop {
    width: 65px;
    top: -35px;
  }
}

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