@charset "UTF-8";

/* -------------
  - *基本設定
  - *header
  - *nav
  - *固定ボタン
  - *mainvisual
  - *footer
  - *書式
  - *h1
  - *ボタン
  - *強制CSS
------------- */

:root {
  --text-color: #333;
  --main-color: #d6000f;
  --sub-color: #333;
  --navy-color: #2d3341;
  --bg-color: #edf1f2;
  --line-color: #ccc;
  --font-jp: "ryo-display-plusn", serif;
  --font-jp-weight: 500;
  --font-en: "cormorant", sans-serif;
  --font-en-weight: 300;
  --font-num: "adobe-caslon-pro", serif;
  --font-num-weight: 600;
  --selection-color: rgb(117, 95, 82,10%);
}

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

  *基本設定

================================================================================================================================== */
@media print {
  html {
    print-color-adjust: exact;
  }

  body {
    zoom: 80%;
  }

  .fixed {
    position: inherit !important;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  position: relative;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: var(--text-color);
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.1em;
  word-break: break-all;
  word-wrap: break-word;
}

a {
  color: var(--main-color);
  transition: background 0.2s, color 0.2s, opacity 0.2s, transform 0.2s;
}

a:hover {
  color: var(--sub-color);
}

a[href="tel:準備中"] {
  pointer-events: none;
}

::selection {
  background-color: var(--selection-color);
}

::-moz-selection {
  background-color: var(--selection-color);
}

strong {
  font-weight: bold;
}

body, .nav.fixed {
  min-width: 1300px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
  vertical-align: top;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

.inner {
  max-width: 1100px;
  margin-inline: auto;
}

/*reCAPTCHAのロゴ（バッジ）を非表示*/
.grecaptcha-badge {
  visibility: hidden;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  body {
    font-size: 16px;
  }

  body, .nav.fixed {
    min-width: auto;
  }

  .inner {
    max-width: none;
    padding-inline: 5%;
    margin-inline: 0;
  }
}

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

  *header

================================================================================================================================== */
.header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.header_inner {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  padding-top: 5px;
  padding-left: 8px;
}

.header h1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 18px;
}

.header_logo {
  width: 176px;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  header {
    display: none;
  }
}

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

  *nav

================================================================================================================================== */
.nav {
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  line-height: 1.6;
}

.mega_menu_ttl {
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid;
  margin-bottom: 10px;
}

/* ==============================================
  *PC
============================================== */
@media print, screen and (min-width: 641px) {
  .nav :is(.btn_menu) {
    display: none;
  }
  .nav_wrap {
    min-height: 40px;
  }
  .nav {
    width: 100%;
    position: relative;
    z-index: 10;
  }

  /*----------ナビメニュー----------*/
  .nav nav {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .nav_menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav_menu a {
    color: var(--text-color);
  }
  .nav_menu > li {
    position: relative;
  }
  .nav_menu_tit {
    display: block;
    min-height: 40px;
    font-size: 18px;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 0 54px;
    position: relative;
    z-index: 2;
  }
  a.nav_menu_tit {
    transition: color 0.2s;
  }
  a.nav_menu_tit:hover {
    color: var(--main-color);
  }
  .parent_menu:not(.nav_menu_tit) {
    display: none;
  }

  /* 装飾 */
  .nav_menu_tit::before,
.nav_menu > li:first-child .nav_menu_tit::after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #ccc;
    position: absolute;
    top: 0;
  }
  .nav_menu_tit::before {
    right: 0;
  }
  .nav_menu > li:first-child .nav_menu_tit::after {
    left: 0;
  }

  /*----------ナビ固定時----------*/
  .nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    bottom: auto;
    width: 100%;
    background: #fff;
  }
  .nav.fixed .menu_list_wrap {
    display: flex;
    align-items: center;
  }
  .nav.fixed nav {
    flex: 1;
  }
  .nav.fixed .fixed_btn {
    position: static;
  }
  .nav.fixed .nav_menu > li {
    width: 100%;
  }
  .nav.fixed .nav_menu_tit {
    padding: 0;
  }

  /*----------ドロップダウンメニュー----------*/
  .child_menu {
    font-size: 15px;
    opacity: 0;
    visibility: hidden;
    box-shadow: rgb(0 0 0 / 0.1) 0px 4px 12px;
    position: absolute;
    top: 95%;
    left: 0%;
    z-index: 9999;
    transition: 0.2s ease-in-out;
  }
  .nav_slidebtm:hover .child_menu,
.nav_slidebtm:focus-within > .child_menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
  .child_menu:not(.mega_menu) {
    width: 200px;
  }
  .child_menu:not(.mega_menu) a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    background-color: var(--text-color);
    position: relative;
    transition: background-color 0.3s;
  }
  .child_menu:not(.mega_menu) a:not(:last-child) {
    border-bottom: 1px solid var(--line-color);
  }
  .child_menu:not(.mega_menu) a:hover {
    background-color: var(--main-color);
  }

  /* ------- メガメニュー ------- */
  .nav_menu > li.is_mega {
    position: static !important;
  }
  .mega_menu {
    width: 100%;
    background: rgb(255 255 255 / 0.6);
  }
  .mega_menu_inner {
    padding: 40px 0;
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 0 3%;
  }
  .mega_menu_col {
    width: 100%;
  }
  .mega_menu_list > li a {
    position: relative;
    display: block;
    padding: 8px 0 8px 1.2em;
    transition: color 0.2s ease-in-out;
    position: relative;
  }
  .mega_menu_list > li a:hover {
    color: var(--sub-color);
  }
  .mega_menu_list > li a::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f105";
    letter-spacing: 0;
    position: absolute;
    left: 0;
    top: 8px;
  }
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  .nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
  }
  .nav .sp_logo {
    width: calc(100% - 56px);
  }
  .nav .sp_logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    padding: 5px;
  }
  .nav .sp_logo img {
    width: auto;
    max-height: 100%;
  }

  /* ------- ハンバーガーボタン ------- */
  .btn_menu {
    position: relative;
    right: 0;
    color: #fff;
    width: 56px;
    background: var(--main-color);
    border: none;
    padding: 0;
    margin: 0;
    text-align: center;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .btn_menu i {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    margin: auto;
    font-style: normal;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
  }
  .btn_menu span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 35px;
    height: 2px;
    background: #fff;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 1;
  }
  .btn_menu span:nth-of-type(1) {
    top: 16px;
  }
  .btn_menu span:nth-of-type(2) {
    top: 28px;
  }
  .btn_menu span:nth-of-type(3) {
    top: 40px;
  }

  /* 押下時 */
  .btn_menu.active {
    right: 16.25rem;
  }
  .btn_menu.active span:nth-of-type(1) {
    top: 28px;
    transform: rotate(225deg);
  }
  .btn_menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  .btn_menu.active span:nth-of-type(3) {
    top: 28px;
    transform: rotate(-225deg);
  }

  /* ------- スライドメニュー ------- */
  .nav,
.nav a {
    color: #fff;
  }
  nav {
    width: 16.25rem;
    height: 100%;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background: var(--main-color);
    padding: 15px;
    position: fixed;
    top: 0;
    right: -16.25rem;
    z-index: 2;
    overflow: hidden;
  }

  /* 展開時 */
  body.nav-open nav {
    overflow-y: scroll;
    overscroll-behavior-y: none;
    right: 0;
  }
  .nav_menu a {
    display: block;
  }
  .nav_menu > li {
    border-bottom: 1px solid #fff;
  }
  .nav_menu > li:first-child {
    border-top: 1px solid #fff;
  }
  .nav_menu .nav_menu_tit,
.nav_menu .parent_menu {
    padding: 15px 10px;
  }
  .nav_menu .nav_menu_en {
    display: none !important;
  }

  /* ------- 下層のあるメニュー ------- */
  .nav_menu .child_menu {
    padding-left: 15px;
    padding-bottom: 10px;
  }
  .nav_menu .child_menu a {
    padding: 5px 10px 5px 0.5em;
    text-indent: -0.5em;
  }
  .nav_menu .child_menu a::before {
    content: "-";
  }

  /* アコーディオンやメガでない時に、展開中に含まれる扉ページのリンクを非表示 */
  .nav_menu .nav_slidebtm:not(.is_accord, .is_mega) .child_menu a.sp:first-of-type {
    display: none !important;
  }

  /* アコーディオン&メガメニュー */
  .nav_slidebtm.is_accord,
.nav_slidebtm.is_mega {
    cursor: pointer;
  }
  .nav_slidebtm.is_accord .parent_menu,
.nav_slidebtm.is_mega .parent_menu {
    position: relative;
  }
  .nav_slidebtm:not(.is_accord, .is_mega) .parent_menu:not(.nav_menu_tit) {
    display: none;
  }
  .nav_slidebtm.is_accord .parent_menu::before,
.nav_slidebtm.is_mega .parent_menu::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f067";
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    border: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
  .nav_slidebtm.is_accord > a.nav_menu_tit,
.nav_slidebtm.is_mega > a.nav_menu_tit {
    display: none;
  }
  .nav_slidebtm.is_accord .child_menu,
.nav_slidebtm.is_mega .child_menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }

  /* アコーディオン&メガメニュー展開時 */
  .nav_slidebtm.is_accord.active .parent_menu::before,
.nav_slidebtm.is_mega.active .parent_menu::before {
    content: "\f068";
  }
  .nav_slidebtm.is_accord.active .child_menu,
.nav_slidebtm.is_mega.active .child_menu {
    opacity: 1;
    visibility: visible;
  }

  /* ------- メガメニュー ------- */
  .mega_menu_inner > *:not(:last-child) {
    margin-bottom: 20px;
  }

  /* ナビ展開時の後ろの背景 */
  .nav_overlay {
    display: none;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.2);
  }
  body.nav-open .nav_overlay {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

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

  *固定ボタン

================================================================================================================================== */
.fixed_btn {
  position: fixed;
  right: 0;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
}
.fixed_btn a {
  width: 220px;
  min-height: 74px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  background: var(--main-color);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  padding: 8px 20px;
  position: relative;
}
.fixed_btn a:nth-child(odd) {
  background: var(--sub-color);
}
.fixed_btn a::after {
  display: block;
  content: "";
  width: 10px;
  aspect-ratio: 1;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: #fff;
  position: absolute;
  right: 8px;
  bottom: 8px;
}
.fixed_btn span {
  display: block;
  font-size: 129%;
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
}

@media (hover: hover) {
  .fixed_btn a:not([href^=tel]) {
    transition: opacity 0.3s;
  }
  .fixed_btn a:not([href^=tel]):hover {
    opacity: 0.7;
  }
}

/* ==============================================
  *PC
============================================== */
@media print, screen and (min-width: 641px) {
  .fixed_btn [href^=tel]::after {
    display: none;
  }
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  .fixed_btn {
    width: 100%;
    top: auto;
    bottom: 0;
  }
  .fixed_btn a {
    width: 50%;
    min-height: 60px;
    font-size: clamp(10px, 3.2vw, 14px);
    padding: 5px 14px;
  }
  .fixed_btn a::after {
    right: 4px;
    bottom: 4px;
  }
  .fixed_btn span {
    display: block;
    font-size: 129%;
    font-family: var(--font-jp);
    font-weight: var(--font-jp-weight);
  }
}

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

  *mainvisual

================================================================================================================================== */
/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  #mainvisual {
    margin-top: 56px;
  }
}

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

  *footer

================================================================================================================================== */
.pagetop {
  width: 50px;
  background-color: var(--text-color);
  cursor: pointer;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 11;
}
@media (hover: hover) {
  .pagetop {
    transition: background-color 0.3s ease-out;
  }
  .pagetop:hover {
    background-color: var(--main-color);
  }
}

.footer {
  position: relative;
  width: 100%;
  background-color: var(--text-color);
  font-size: 13px;
}
.footer,
.footer a {
  color: #fff;
}
@media (hover: hover) {
  .footer a:not([href^=tel]) {
    transition: color 0.3s;
  }
  .footer a:not([href^=tel]):hover {
    color: var(--main-color);
  }
}
.footer_inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
}

.footer_info {
  width: 425px;
  padding: 110px 30px 125px 0;
  border-width: 0 1px 0 0;
  border-style: solid;
  border-color: rgb(255 255 255 / 0.2);
}
.footer_info_logo {
  max-width: 192px;
  margin-bottom: 30px;
}
.footer_info_add {
  font-size: 115%;
  line-height: 2.3;
  margin-bottom: 5px;
}
.footer_info_map {
  line-height: 1.6;
  margin-bottom: 40px;
}
.footer_info_map a::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f3c5";
  padding-right: 8px;
}
.footer_info_tel {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 35px;
}
.footer_info_tel a {
  font-family: var(--font-num);
  font-weight: var(--font-num-weight);
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.footer_info_tel a span {
  font-size: 60%;
}
.footer_info_sns {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px 20px;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 70px;
}
.footer_info_privacy {
  margin-bottom: 8px;
}

.copy small {
  font-size: 100%;
  line-height: 1;
}

.footer_nav {
  flex: 1;
  padding: 120px 45px 125px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 80px;
  font-size: 108%;
  line-height: 1.75;
}
.footer_nav > * {
  width: 240px;
}
.footer_nav ul li:not(:last-child) {
  margin-bottom: 25px;
}
.footer_nav_tit {
  padding-bottom: 5px;
  border-bottom: 1px solid #5c5c5c;
  margin-bottom: 25px;
}
.footer_nav_tit:not(:first-child) {
  margin-top: 30px;
}
.footer_nav .footer_nav_list li:not(:last-child) {
  margin-bottom: 15px;
}
.footer_nav .footer_nav_list li a::before {
  content: "-";
}

.footer_nav ul li a span::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: var(--main-color);
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
  transform: scaleX(0);
  content: "";
  z-index: 1;
}

.footer_nav ul li a:hover span::before {
  transform: scaleX(1);
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  .pagetop {
    bottom: 70px;
  }
  .footer {
    padding-bottom: 100px;
  }
  .footer_inner {
    display: block;
  }
  .footer_info {
    width: 100%;
    padding: 50px 5%;
    border-width: 0 0 1px;
  }
  .footer_info_sns {
    margin-bottom: 35px;
  }
  .footer_nav {
    padding: 50px 5% 0;
    display: block;
  }
  .footer_nav > * {
    width: 100%;
  }
  .footer_nav > *:not(:last-child) {
    margin-bottom: 20px;
  }
  .footer_nav ul li:not(:last-child) {
    margin-bottom: 20px;
  }
  .footer_nav_tit {
    margin-bottom: 15px;
  }
}

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

  *書式

================================================================================================================================== */
.maincolor {
  color: var(--main-color);
}

.subcolor {
  color: var(--sub-color);
}

.indent {
  position: relative;
  display: flex;
  font-size: 100%;
}

.indent .sign {
  flex-shrink: 0;
}

.yellowline {
  text-decoration: underline;
  text-decoration-color: rgb(255, 245, 157);
  text-decoration-skip-ink: none;
  text-decoration-thickness: 0.5em;
  text-underline-offset: -0.175em;
}

.caution {
  color: #c52b2b;
}

.textStrong {
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  font-size: 176%;
  letter-spacing: .1em;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  .textStrong {
    font-size: 138%;
  }
}

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

  *h1

================================================================================================================================== */
h1 {
  font-size: 12px;
  line-height: 1;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  h1 {
    padding: 5px 5%;
    background: var(--bg-color);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 30px;
  }
}

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

  *ボタン

================================================================================================================================== */
/* ----- 横並び用 ----- */
.btnflex {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.btnflex_center {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 10px;
}

/* ----- ボタン01 ----- */
.btn01 a {
  display: inline-block;
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  padding: 13px 40px;
  border-radius: 24px;
  background: url(images/btn_arrow.png) #000 right 18px center/14px auto no-repeat;
}

@media (hover: hover) {
  .btn01 a {
    transition: background-color 0.3s ease-out;
  }
  .btn01 a:hover {
    background-color: var(--main-color) !important;
  }
}

/* white */
.btn01.btn01-white a {
  color: var(--text-color);
  background-image: url(images/btn_arrow2.png);
  background-color: #fff;
}

@media (hover: hover) {
  .btn01.btn01-white a {
    transition: background-color 0.3s ease-out, color 0.2s ease-out;
  }
  .btn01.btn01-white a:hover {
    color: #fff;
    background-image: url(images/btn_arrow.png);
  }
}

/* 準備中 */
/* .btn01.coming > * {
  pointer-events: none;
}

.btn01.coming > *::before {
  content: "準備中";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  transform: translate(-50%, -50%);
} */

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

  *強制CSS

================================================================================================================================== */
.sp {
  display: none !important;
}

.mt00 {
  margin-top: 0 !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 5px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mr00 {
  margin-right: 0 !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mr80 {
  margin-right: 5px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mb00 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 5px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml00 {
  margin-left: 0 !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.ml80 {
  margin-left: 5px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.pt00 {
  padding-top: 0 !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 5px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pr80 {
  padding-right: 5px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pb00 {
  padding-bottom: 0 !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 5px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pl00 {
  padding-left: 0 !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pl80 {
  padding-left: 5px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.bold {
  font-weight: 700 !important;
}

.left {
  text-align: left !important;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right !important;
}

.clear {
  clear: both !important;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}
