/*===============================

	common

================================*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", system-ui;
    font-size: 15px;
    color: #626262;
    letter-spacing: 2px;
    text-align: start;
}

.wrapper {
    display: flex;
}

.Bg {
    background-color: #FFEBEB;
}

.BgWhite {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 5px #ccc;
}

.BgPink {
    background-color: #FFEBEB;
    border-radius: 15px;
    padding: 20px 20px;
}

.main-content .page {
    position: relative;
    top: -20vh;
    padding: 60px 30px;
}

.main-content .other {
    position: relative;
    top: -15vh;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

.tb-only {
    display: none;
}

/*-------------------------
  image
-------------------------*/
img {
    width: 100%;
}

.img-right {
    float: right;
    border-radius: 15px;
    width: 230px;
    margin-left: 20px;
    margin-bottom: 5px;
    margin-top: 0px;
    border: #a5a5a5 solid 1px;
}

/*-------------------------
  font
-------------------------*/
.Fs30 {
    font-size: 30px;
}

.Fs35 {
    font-size: 35px;
}

.txt {
    line-height: 1.5;
}

.TxtCen {
    text-align: center;
}

.highlighter {
    background: linear-gradient(transparent 40%, #fdffa1 40% 90%, transparent 60%);
}

/*-------------------------
  width
-------------------------*/
.W1000 {
    max-width: 1000px;
    margin: 0 auto;
}

.W1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.W900 {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.W780 {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 30px;
}

.W700 {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px;
}

/*-------------------------
  margin
-------------------------*/
.Mb10 {
    margin-bottom: 10px;
}

.Mb20 {
    margin-bottom: 20px;
}

.Mb30 {
    margin-bottom: 30px;
}

.Mb40 {
    margin-bottom: 40px;
}

.Mb60 {
    margin-bottom: 60px;
}

.Mb80 {
    margin-bottom: 80px;
}

.Mb100 {
    margin-bottom: 100px;
}

.Mt100 {
    margin-top: 100px;
}

/*-------------------------
  Btn
-------------------------*/
/* 赤ボタン */
.MoreBtn {
    background-color: #CF0106;
    color: #fff;
    max-width: 220px;
    min-width: 220px;
    margin: 0 auto;
    border-radius: 40px;
    font-weight: 700;
    position: relative;
    border: 1px solid #fff;
}

.MoreBtn::before {
    content: '';
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    right: 13px;
    bottom: 0;
    margin: auto;
}

.MoreBtn::after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #CF0106;
    border-right: solid 2px #CF0106;
    transform: rotate(45deg);
    position: absolute;
    top: 0px;
    right: 22px;
    bottom: 0;
    margin: auto;
}

.MoreBtn a {
    display: block;
    padding: 15px 20px;
    border-radius: 40px;
}

/* お問い合わせボタン */
.MoreBtn.ContactBtn {
    max-width: 260px;
    min-width: 260px;
    background-color: #fff;
    color: #626262;
    border: #626262 solid 2px;
}

.MoreBtn.ContactBtn::before {
    background-color: #626262;
}

.MoreBtn.ContactBtn::after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}

/* こちらもチェックボタン */
.MoreBtn.CheckBtn {
    background-color: #fff;
    color: #CF0106;
}

.MoreBtn.CheckBtn::before {
    background-color: #CF0106;
}

.MoreBtn.CheckBtn::after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}

.CheckBtn {
    box-shadow: 1px 1px 5px #ccc;
    margin-bottom: 40px;
}

.Check .wrapper {
    flex-wrap: wrap;
}

/* テキストボタン */
.TxtBtn {
    color: #CF0106;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    border-bottom: 1px dashed #ccc;
}

.TxtBtn a {
    display: block;
    padding: 10px 10px;
}

.TxtBtn::after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0px;
    right: 22px;
    bottom: 0;
    margin: auto;
}

.TxtBtn::before {
    content: '';
    width: 22px;
    height: 22px;
    background: #CF0106;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    right: 13px;
    bottom: 0;
    margin: auto;
}

/* ページトップ戻るボタン */
.TopBtn {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: fixed;
    right: 30px;
    bottom: 50px;
    border-radius: 50px;
    border: 2px solid #CF0106;
    background-color: #fff;
    font-size: 13px;
    font-weight: 700;
    color: #CF0106;
    padding-top: 23px;
    z-index: 10;
}

.TopBtn::after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: -148px;
    right: 18.5px;
    bottom: 0;
    margin: auto;
}

.TopBtn::before {
    content: '';
    width: 25px;
    height: 25px;
    background: #CF0106;
    border-radius: 50%;
    position: absolute;
    top: -150px;
    right: 9px;
    bottom: 0;
    margin: auto;
}

.TopBtn a {
    display: block;
    padding: 20px 15px;
    border-radius: 50px;
}


/*-------------------------
  title
-------------------------*/
.title {
    font-size: 23px;
    font-weight: 700;
    color: #CF0106;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 50px;
}

.title .en {
    display: block;
    color: #B5B5B5;
    font-size: 18px;
}

.en {
    font-family: "Jost", sans-serif;
}

#PAGES .title {
    background-color: #FFEBEB;
    height: 330px;
    padding-top: 120px;
}

.sub-title {
    color: #CF0106;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    position: relative;
    margin-bottom: 80px;
    line-height: 1.5;
}

.sub-title::before {
    content: '';
    position: absolute;
    bottom: -20px;
    display: inline-block;
    width: 60px;
    height: 1.5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #CF0106;
    border-radius: 5px;
}

.S-title {
    margin-bottom: 10px;
    font-weight: 700;
    color: #CF0106;
    border-bottom: 1px solid #CF0106;
    padding-bottom: 5px;
}

/*-------------------------
  header
-------------------------*/
header {
    background-color: #FFEBEB;
    padding-bottom: 80px;
    padding-top: 40px;
    /* border-bottom: #CF0106 solid 10px; */
}

#PAGES header {
    border-bottom: #CF0106 solid 0px;
    border-top: #CF0106 solid 10px;
    margin-bottom: 0;
}

header .inner {
    padding: 0 30px;
}

header .logo {
    max-width: 300px;
}

header .header-inner .wrapper {
    width: 100%;
    justify-content: space-between;
    align-items: center;

}

header .header-inner .pc-menu ul {
    background-color: #fff;
    border-radius: 40px;
    color: #CF0106;
    border: #CF0106 2px solid;
    font-weight: 700;
}

header .header-inner ul li a {
    display: block;
    padding: 15px 20px;
}


/*-------------------------
  footer
-------------------------*/
footer {
    background-color: #626262;
    padding: 50px 30px 8px;
}

footer .footer-inner {
    color: #fff;
}

footer .footer-inner.W900 {
    padding: 0;
}

footer .footer-inner .wrapper {
    justify-content: space-between;
}

footer .footer-inner .info p {
    margin-bottom: 10px;
    line-height: 1.5;
}

footer .footer-inner small {
    text-align: center;
    display: block;
}

footer .footer-inner .sitemap .wrapper {
    justify-content: center;
    margin-bottom: 15px;
}

footer .footer-inner .sitemap ul li {
    padding: 0 15px;
    border-right: 1px solid #fff;
    line-height: 1.3;
}

footer .footer-inner .sitemap ul li:last-of-type {
    border-right: 0px;
}