@charset "UTF-8";
/*----------------------------------------
Reset  Default Styles
----------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  font-size: inherit;
  vertical-align: baseline;
}

i, em {
  font-style: normal;
}

small {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, li {
  list-style: none;
}

th, td {
  vertical-align: middle;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

ul, dl, ol {
  text-indent: 0;
}

li {
  list-style: none;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #282828;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

button,
input {
  line-height: normal;
}

input,
textarea {
  background-image: -webkit-linear-gradient(hsla(0deg, 0%, 100%, 0), hsla(0deg, 0%, 100%, 0)); /* Removing the inner shadow, rounded corners on iOS inputs */
  padding: 4px 8px;
  border: 1px solid #282828;
  background: #fff;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
  appearance: button;
}

em, i {
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  word-wrap: break-word;
  font-size: 62.5%;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: relative;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.7;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  min-width:1000px;
}


@media only screen and (max-width: 768px) {
	body {
		min-width:auto;
	}
}

a {
	color:#0b308e;
  transition: filter 0.3s ease;
}
a:hover {
  filter: brightness(120%);
}
@media only screen and (max-width: 768px) {
  a:hover {
    filter: none;
  }
}

button {
  appearance: none;
  border: none;
  transition: filter 0.3s ease;
}
button:hover {
  filter: brightness(120%);
}
@media only screen and (max-width: 768px) {
  button:hover {
    filter: none;
  }
}
button:active, button:focus, button:visited {
  color: #000;
}

button,
a,
img {
  outline: none;
}

/*------------------------------------------------------
  contents
------------------------------------------------------*/
a {
  transition: 0.3s ease;
}

a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

img{
  max-width:100%;
}

.container{
  width:min(1000px, 92%);
  margin:auto;
}

.containerS{
  width:min(680px, 92%);
  margin:auto;
}

.tC{
  text-align:center;
}

.fBig {
  font-size:120%;
}

.fS {
  font-size:85%;
}

.mb1em{
  margin-bottom:1em;
}
.mb40 {
  margin-bottom:40px;
}
.flexPC {
  display: flex;
}
@media (max-width: 768px) {
  .flexPC {
    display: block;
  }
}

/* Hero */
.hero{
  background: linear-gradient(135deg, #48a5b6, #48a5b6);
  text-align:center;
}
.hero h1{
  line-height:0;
}
.hero h1.sp{
  display:none;
}

@media (max-width: 768px) {
.hero h1.pc{
    display:none;
  }
  .hero h1.sp{
    display:block;
  }
}

/* Section */
header + section {
  padding-top: 24px;
}
section{
  padding:70px 0;
  background:#eaeaea;
}

.section-title{
  font-size:32px;
  margin-bottom:30px;
  color:#1c67b3;
  text-align:center;
  font-weight:700;
}

.card{
  position: relative;
  background:#fff;
  border-radius:20px;
  padding:32px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  margin-bottom:24px;
}

.card h3{
  font-size:24px;
  color:#1c67b3;
  margin-bottom:16px;
}

.flow{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}

.flow-item{
  background:#fff;
  border-radius:16px;
  padding:24px;
  text-align:center;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  position:relative;
}

.flow-item .step{
  width:44px;
  height:44px;
  background:#1c67b3;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
  font-weight:bold;
}

.flow-item h4{
  margin-bottom:10px;
  color:#1c67b3;
  font-size:20px;
}

.attention{
  background:#fff7e6;
  border-left:6px solid #ff9800;
  padding:20px;
  border-radius:10px;
  margin-top:20px;
}

.contact-list li{
  margin-bottom:14px;
}

.notes{
  font-size:14px;
  line-height:1.9;
}

footer{
  background:#0b2340;
  color:#fff;
  padding:40px 0;
  font-size:13px;
  line-height:1.8;
}

footer p + p{
  margin-top:16px;
}

.card ul{
  list-style: disc;
  padding-left: 1.5em;
}

.card ol{
  list-style: decimal;
  padding-left: 1.5em;
}

.card li{
  list-style: inherit;
  margin-bottom: 10px;
}

.card ul,
.card ol{
  padding-left: 1.8em;
  margin-top: 1em;
}

.card li{
  margin-bottom: 0.6em;
}

sup,
sub{
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup{
  vertical-align: baseline;
  top: -0.5em;
}

sub{
  vertical-align: baseline;
  bottom: -0.25em;
}

.imgFlex {
  display: flex;
  align-items: center;
  gap: 20px;
}
.imgFlex img {
  width: 200px;
  height: auto;
}
.imgTxt p:first-child {
    margin: 0px;
    font-size: 1.4rem;
    font-family: "Noto Sans JP", Avenir, "Hiragino Sans", sans-serif;
    line-height: 175%;
    font-weight: 700;
    color: rgb(78, 91, 97);
}


/* Slider styles */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  cursor: grab;
}

.slider:active {
  cursor: grabbing;
}

.slider-container {
  display: flex;
  width: 100%;
  transition: transform 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  transform: translateX(0);
}

.slider-item {
  flex: 0 0 calc((100% - 60px) / 3);
  box-sizing: border-box;
  padding: 0 20px;
  position: relative;
}

.slider-item:not(:last-child)::after {
  content: '➤';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  font-size: 2rem;
  color: rgba(28, 103, 179, 0.35);
  pointer-events: none;
}
@media (max-width: 768px) {
  .slider-item:not(:last-child)::after {
    right: 16px;
  }
}

.slider-item img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 4px;
  border: 1px solid #CCC;
  pointer-events: none;
}

@media (max-width: 768px) {

  .slider-item img {
    max-width: 210px;
    text-align: center;
    margin: 0 auto;
  }

  .slider-item {
    flex: 0 0 calc(100% - 20px);
  }
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
}

.slider-btn-prev {
  left: 10px;
}

.slider-btn-next {
  right: 10px;
}

@media (max-width: 768px) {
  /* .slider-btn {
    width: 32px;
    height: 32px;
  } */
  .slider-item {
    flex: 0 0 100%;
    text-align: center;
  }
}

@media(max-width:768px){
  .slider-btn{
    display:none;
  }
}

.slider-container{
  will-change: transform;
  transform: translate3d(0,0,0);
}

/* Slider dots */
.slider-dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #1c67b3;
}
