/*PC用css*/
/* Reset styles */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    min-height: 100%;
    overflow-x: hidden;
}

h5,
h4,
h3,
h2,
li,
p,
a,
label {
    color: #666666;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*topへ戻るボタン*/
.page_top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    border-radius: 10px;
    background-color: #fff;
    transition: all .3s;
    z-index: 9999;
    box-shadow: 1px 1px 10px #3333334a;
}

/*上向き矢印*/
.toparrow {
    position: relative;
    top: 5px;
    display: inline-block;
    vertical-align: middle;
    margin: 25px;
    color: #3f88d7;
    line-height: 0.3;
    width: 0.7em;
    height: 0.7em;
    border: 0.2em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(-45deg);
    transition: all .3s;
}

/***マウスオーバー時***/
.page_top:hover {
    background-color: #f3f3f3;
}

/***トップへ戻るボタンここまで***/

main {
    padding-top: 80px;
}

.main {
    position: relative;
    background: #fff;
}

.main_contents {
    position: relative;
    width: 80%;
    left: 10%;
    margin-bottom: 80px;
}

.title h2 {
    position: relative;
    left: 15px;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

@media (max-width: 550px) {
    .title h2 {
        font-size: 2rem;
    }
}

.title h2::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 52%;
    transform: translateY(-50%);
    width: 8px;
    height: 50%;
    background: #ff930c;
    border-radius: 2px;
}

.title h4 {
    position: relative;
    font-size: 2rem;
    margin-bottom: 20px;
}

.title h5 {
    position: relative;
    font-size: 2.2rem;
}


/*ページ遷移履歴*/
.breadcrumb {
    position: relative;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 10px 0;
    font-size: 14px;
    background-color: #fff;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li+li::before {
    content: ">";
    margin-right: 8px;
    color: #888;
}

.breadcrumb a {
    color: #0078d4;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.feedin {
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;
    opacity: 0;
}

.feedin.show {
    opacity: 1;
    transform: translateY(0);
}

/*Coming soon*/
.cs-block {
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 20px;
    margin: 70px auto;
    box-shadow: 1px 1px 11px #00000042;
    max-width: 1000px;
}

.cs-block img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) blur(5px);
}

.cs-wave1 {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    line-height: 0;
    fill: #7eb5efe8;
    top: 42px;
}

.cs-wave2 {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    line-height: 0;
    fill: #3f88d7bf;
    top: 151px;
}

.cs-block p {
    position: relative;
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    letter-spacing: 0.2em;
    font-size: 3rem;
}

.cs-backbtn {
    position: relative;
    background: #3f88d7;
    display: flex;
    padding: 11px;
    color: #fff;
    font-size: 20px;
    border-radius: 10px;
    justify-content: center;
    width: 200px;
    text-decoration: none;
}