@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@700&display=swap');
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}
ol {
  list-style: none;
}

button, input, select, textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

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

img, embed, object, audio, video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
td, th {
  padding: 0;
  text-align: left;
}

main {
  display: block;
  z-index: 1;
}

/*==========================================================================
 base
==========================================================================*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  font-family: Noto Sans CJK JP,Noto Sans JP,sans-serif;
  background: #fff;
  color: #000;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: 100%;
}

@media only screen and (min-width: 883px) {
  body {
    font-size: 1.8em;
    min-width: 1200px;
  }
}

a {
  color: #2DA4BA;
  text-decoration: none;
  transition: all .3s ease-out;
}
a[target="_blank"]::after {
  content: "";
  background: url(../img/icon/blank.svg) no-repeat right center;
  background-size: 16px 16px;
  padding-right: 2rem;
}

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

/*==========================================================================
 form_parts
==========================================================================*/
button {
  vertical-align: middle;
  padding: 0;
  outline: none;
  border: 0;
  background: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

input[type="text"], input[type="number"], input[type="tel"], input[type="email"], input[type="password"], select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  max-width: 100%;
  color: inherit;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 1.6;
  border-radius: .4rem;
  border: 1px solid #ccc;
  background-color: #F7F7F7;
  outline: none;
  transition: all .2s ease-out;
}
input[type="text"], input[type="number"], input[type="tel"], input[type="email"], input[type="password"] {
  padding: 0 1.2rem;
  width: 100%;
  height: 4.8rem;
}
@media only screen and (min-width: 883px) {
  input[type="text"], input[type="number"], input[type="tel"], input[type="email"], input[type="password"] {
    width: 400px;
  }
}

textarea {
  padding: 1rem 1.2rem;
  width: 100%;
  height: 200px;
  margin-bottom: -1rem;
}
@media only screen and (min-width: 883px) {
  textarea {
    padding: 1.1rem 1.3rem;
  }
}

input[type="checkbox"] {
  display: none;
}
.c-checkbox {
  position: relative;
}
.c-checkbox::before {
  content: "";
  position: absolute;
  left: -30px;
  margin-right: .8rem;
  border-radius: 3px;
  border: 1px solid #CCC;
  width: 18px;
  height: 18px;
  z-index: 1;
  cursor: pointer;
  background: url(../img/icon/checkmark.svg);
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: 50% 50%;
}
:checked + .c-checkbox:before {
  border: 1px solid #2DA4BA;
  background-color: #2DA4BA;
}

input[type="text"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="email"]:focus, input[type="password"]:focus, select:focus, textarea:focus {
  box-shadow: 0 0 5px #244AB8;
  border: 1px solid #244AB8;
}
input[type="text"].is-ok, input[type="number"].is-ok, input[type="tel"].is-ok, input[type="email"].is-ok, input[type="password"].is-ok, select.is-ok, textarea.is-ok {
/*  background-color: #ECF8F6;*/
}
input[type="text"].is-error, input[type="number"].is-error, input[type="tel"].is-error, input[type="email"].is-error, input[type="password"].is-error, select.is-error, textarea.is-error {
  border: 1px solid #E49191;
  background-color: #FCF2F2;
}
input::-ms-clear {
  visibility: hidden;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #CFD3CF;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #CFD3CF;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #CFD3CF;
}
input::placeholder, textarea::placeholder {
  color: #CFD3CF;
}

/*==========================================================================
 Layout
==========================================================================*/
/*===== page header ====*/
.l-page_header .header_contents {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 10;
  height: 50px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E5E5E5;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.l-page_header .header_contents .logo {
  margin-left: 1rem;
  margin-right: auto;
}
.l-page_header .header_contents .menu_pc {
  display: none;
}
.l-page_header .header_contents .menu_btn_sp {
  width: 54px;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.l-page_header .header_contents .menu_btn_sp span {
  display: block;
  width: 20px;
  margin: auto;
  height: 3px;
  background-color: #000;
  position: absolute;
  right: 16px;
  top: calc((100% - 4px)/2);
  border-radius: 3px;
  transition: .2s;
}
.l-page_header .header_contents .menu_btn_sp span:nth-child(1) {
  transform: translateY(-6px);
}
.l-page_header .header_contents .menu_btn_sp span:nth-child(3) {
  transform: translateY(6px);
}
.l-page_header .header_contents .menu_btn_sp.is-show_menu span:nth-child(1) {
  transform: rotate(45deg);
}
.l-page_header .header_contents .menu_btn_sp.is-show_menu span:nth-child(2) {
  opacity: 0;
}
.l-page_header .header_contents .menu_btn_sp.is-show_menu span:nth-child(3) {
  transform: rotate(-45deg);
}

.l-page_header .menu_sp {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 0;
  background: #fff;
  box-shadow: 10px 0px 0px rgba(0, 0, 0, 0.1);
  transition: height .3s ease-out;
  z-index: 9;
  overflow-y: scroll;
}
@media screen and (min-width: 884px) {
  .l-page_header .menu_sp {
    top: 80px;
  }
}
.l-page_header .menu_sp.is-show_menu {
  height: 100%;
  padding-bottom: 240px;
}
@media only screen and (min-width: 884px) {
  .l-page_header .menu_sp.is-show_menu {
    padding-bottom: 280px;
  }
}
.l-page_header .menu_sp ul {
  margin: 0 1.8rem;
}
.l-page_header .menu_sp>ul {
  border-bottom: 1px solid #e5e5e5;
}
.l-page_header .menu_sp ul.second_menu {
  margin: 0;
  margin-left: 3rem;
}
.l-page_header .menu_sp li:not(:first-child) {
  border-top: 1px solid #e5e5e5;
}
.l-page_header .menu_sp li .list_title,
.l-page_header .menu_sp li a {
  display: block;
  color: inherit;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 2rem 0;
}
.l-page_header .menu_sp ul.second_menu li a {
  position: relative;
  font-weight: normal;
  padding: 1.6rem;
}
.l-page_header .menu_sp ul.second_menu li {
  border-top: 1px solid #e5e5e5;
}
.l-page_header .menu_sp ul.second_menu li a:before {
  content: "";
  width: .8rem;
  height: 3px;
  background: #2DA4BA;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.l-page_header .menu_sp ul.second_menu li a:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/icon/arrow-right-single-blue.svg) no-repeat center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: .5rem;
  margin: auto;
}

.l-page_header .header_contents .menu_sp .cta_menu {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: -250px;
  background: #2DA4BA;
  z-index: 10;
  opacity: 0;
  transition: all .2s ease-out;
}
.l-page_header .header_contents .menu_sp.is-show_menu .cta_menu {
  opacity: 1;
  bottom: 0;
  padding: 1.6rem 2rem;
}
.l-page_header .header_contents .menu_sp .cta_menu .c-btn_cta {
  width: 100%;
  height: 56px;
  border: 1px solid #FFF;
  border-radius: 5px;
}
.l-page_header .header_contents .menu_sp .cta_menu .c-tel_box {
  padding-top: .9rem;
  margin-left: 0;
  margin-bottom: .8rem;
}
.l-page_header .header_contents .menu_sp .cta_menu .c-tel_box .tel {
  line-height: .67;
}
.l-page_header .header_contents .menu_sp .cta_menu .c-tel_box .tel:before {
  top: -3px;
  left: -16px;
  background: url(../img/icon/tel-white.svg) no-repeat center/contain;
}
@media only screen and (min-width: 884px) {
  .l-page_header .header_contents {
    height: 80px;
  }
  .l-page_header .header_contents .menu_sp .cta_menu .c-tel_box .tel:before {
    left: -24px;
  }
  .l-page_header .header_contents .menu_sp .cta_menu .c-tel_box:hover .tel:before {
    background: url(../img/icon/tel-blue.svg) no-repeat center/contain;
  }
}

@media only screen and (min-width: 1100px) {
  .l-page_header .header_contents {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-bottom: 1px solid #E5E5E5;
  }
  .l-page_header .header_contents .logo {
    margin-left: 0;
  }
  .l-page_header .header_contents .logo img {
    width: 204px;
    height: auto;
  }
  .l-page_header .header_contents .menu_btn_sp {
    display: none;
  }
  .l-page_header .header_contents .menu_pc {
    display: flex;
    flex: 1 auto;
    justify-content: flex-end;
    margin-right: 415px;
    margin-left: 20px;
  }
  .menu_pc > ul {
    display: flex;
    white-space: nowrap;
    height: 100%;
  }
  .menu_pc > ul > li {
    display: flex;
  }
  .menu_pc > ul > li .hassubmenu_wrapper {
    position: relative;
  }
  .menu_pc > ul > li .hassubmenu_wrapper:hover .second_menu {
    visibility: visible;
    opacity: 1;
    max-height: 600px;
  }
  .menu_pc > ul > li .hassubmenu_wrapper:hover a.btn {
    background: rgba(204, 232, 243, 0.2);
  }
  .menu_pc > ul > li .hassubmenu_wrapper:hover a.btn::before {
    height: 4px;
    opacity: 1;
  }
  .menu_pc > ul > li .hassubmenu_wrapper + .second_menu_bg {
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 80px;
    left: 0;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    z-index: 10;
  }
  .menu_pc > ul > li .hassubmenu_wrapper:hover + .second_menu_bg {
    visibility: visible;
    opacity: 1;
  }
  .menu_pc > ul > li .btn {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 1.1rem;
    font-size: 1.4rem;
    font-weight: bold;
    height: 80px;
    cursor: pointer;
    color: #000;
  }
  .menu_pc > ul > li .btn::before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #2DA4BA;
    transition: all .2s ease-out;
  }
  .menu_pc > ul > li .btn:hover {
    color: #2DA4BA;
  }
  .menu_pc > ul > li .btn:hover::before {
    height: 2px;
    opacity: 1;
  }
  .menu_pc > ul > li .btn.is-hassubmenu::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/icon/arrow-right-single-blue.svg) no-repeat center;
    transform: rotate(90deg);
    background-size: 14px 14px;
    margin-left: .6em;
  }
  .menu_pc > ul > li div.btn {
    cursor: default;
  }
  .menu_pc .second_menu {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    left: -50%;
    top: 80px;
    transition: all 0.4s ease-out;
    padding: 16px;
    z-index: 11;
  }
  .menu_pc .second_menu ul {
    position: relative;
    width: 350px;
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
  }
  .menu_pc .second_menu > ul > li > a {
    display: block;
    color: #000;
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
    padding: 1.6rem 4rem 1.6rem 1.6rem;
    position: relative;
    transition: all .2s ease-out;
    z-index: 2;
  }
  .menu_pc .second_menu > ul > li > a:hover {
    padding-left: 2rem;
    color: #2DA4BA;
  }
  .menu_pc .second_menu > ul > li > a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: #EAF6F9;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 40px;
    transition: all .2s ease-out;
  }
  .menu_pc .second_menu > ul > li > a:hover::before {
    opacity: 1;
  }
  .menu_pc .second_menu > ul > li > a::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(../img/icon/arrow-right-single-blue.svg) no-repeat;
    background-size: 16px 16px;
    position: absolute;
    right: 1.6rem;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .menu_pc .third_menu > ul > li > a {
    display: block;
    padding: 1.6rem 3.2rem 1.6rem 3.2rem;
    position: relative;
    z-index: 2;
    color: #fff;
    background: linear-gradient(to right, rgba(0, 142, 193, 0.95) 0%, rgba(0, 126, 172, 0.95) 100%);
  }
  .menu_pc .third_menu > ul > li > a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: linear-gradient(to right, #38c6ed 0%, #14b2dd 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all .2s ease-out;
  }
  .menu_pc .third_menu > ul > li > a:hover::before {
    opacity: 1;
  }
  .menu_pc .third_menu > ul > li > a::after {
    content: "";
    display: block;
    width: 6px;
    height: 10px;
    background: url(img/icon/arrow-right-single-white.svg) no-repeat;
    background-size: 6px 10px;
    position: absolute;
    right: 1.6rem;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .l-page_header .menu_pc .cta_menu {
    position: absolute;
    right: 1.5rem;
    display: flex;
    gap: 2.4rem;
    align-items: center;
    transform: scale(0.8);
    transform-origin: right;
    height: 100%;
    z-index: -1;
  }
  .l-page_header .menu_pc .c-btn_cta {
    font-size: 1.8rem;
    width: 212px;
    height: 50px;
  }
  .l-page_header .menu_sp {
    display: none;
  }
}
@media only screen and (min-width: 1400px) {
  .l-page_header .header_contents .logo img {
    width: 340px;
    height: auto;
  }
  .l-page_header .header_contents {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .l-page_header .menu_pc .cta_menu {
    transform: scale(1);
    right: 5rem;
  }
  .l-page_header .header_contents .menu_pc {
    margin-right: 515px;
  }
  .l-page_header .menu_pc .cta_menu ul {
    transform: none;
  }
}
@media only screen and (min-width: 1600px) {
  .menu_pc > ul > li .btn {
    font-size: 1.6rem;
  }
  .l-page_header .header_contents .menu_pc {
    margin-right: 524px;
  }
}

/*===== page contents ====*/
.l-page_contents {
  margin-top: 5rem;
}
.l-page_contents .c-page_title {
  position: relative;
}
.l-page_contents .c-page_title::before {
  position: absolute;
  content: "";
  top: -75px;
  right: -25px;
  z-index: -1;
  background: url(../img/header_bg.svg) no-repeat left top / 200px 211.32px;
  width: 200px;
  height: 211.32px;
}
.l-overflow,
.l-overflow_wrapper {
  overflow: hidden;
}
@media only screen and (min-width: 883px) {
  .l-overflow_wrapper {
    padding-bottom: 7rem;
  }
  .l-overflow_wrapper + section,
  .l-overflow_wrapper + div,
  .l-overflow_wrapper + p {
    margin-top: -7rem;
  }
}

@media only screen and (min-width: 883px) {
  .l-page_contents {
    margin-top: 8rem;
  }
  .l-page_contents .c-page_title::before {
    top: -150px;
    right: -220px;
    background: url(../img/header_bg.svg) no-repeat left top / 530px 560px;
    width: 530px;
    height: 560px;
  }
}
@media only screen and (min-width: 883px) and (max-width: 1271px) {
  .l-page_contents::before {
    right: -420px;
  }
}
@media only screen and (min-width: 883px) and (max-width: 1920px) {
  .l-page_contents::before {
    right: calc((100vw - 1920px) / 2 - 60px);
  }
}

/*===== page footer ====*/
.l-page_footer {
  position: relative;
  color: #fff;
  background: #666;
  padding: 6.4rem 0;
  z-index: 0;
}
.l-page_footer::before {
  position: absolute;
  content: "";
  top: -80px;
  left: -80px;
  background: url(../img/footer_bg.svg) no-repeat left top / 300px 307.44px;
  width: 300px;
  height: 307.44px;
  z-index: -1;
}
@media only screen and (min-width: 883px) {
  .l-page_footer::before {
    top: -210px;
    left: calc(50% - 645px/2 - 735.5px);
    background: url(../img/footer_bg.svg) no-repeat left top / 645px 661px;
    width: 645px;
    height: 661px;
  }
}
.l-page_footer a {
  color: #fff;
}

.c-btn_to_top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  background: rgba(223, 127, 127, 0.8);
  border-radius: 50px;
  transition: .2s ease-out;
  z-index: 5;
  opacity: 1;
}
.c-btn_to_top.is-hide {
  opacity: 0;
  transform: translateY(100%);
}
.c-btn_to_top a {
  display: block;
  width: 50px;
  height: 50px;
  background: url(../img/pagetop.svg) no-repeat center/contain;
  background-size: 30px 22px;
  transition: none;
}
.c-btn_to_top:hover {
  width: 50px;
  height: 80px;
}
.c-btn_to_top:hover a {
  width: 50px;
  height: 80px;
  background: url(../img/pagetop_hover.svg) no-repeat center/contain;
  background-position-y: 13px;
  background-size: 30px 52px;
}

.l-page_footer .company_address {
  margin-bottom: 4.8rem;
}
.l-page_footer .company_address dl {
  margin-bottom: 2.4rem;
}
.l-page_footer .company_address dt {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 2.4rem;
}
.l-page_footer .company_address dd {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: .8rem;
}
.l-page_footer .company_address dd.small {
  font-size: 1.2rem;
}
.l-page_footer .map {
  display: block;
  margin: 2.4rem 0;
  height: 200px;
  border: 1px solid #CCC;
  margin: 0;
  overflow: hidden;
  width: 100%;
  margin-top: 2.4rem;
}

.l-page_footer .page_navi {
  margin-bottom: 4.8rem;
}
.l-page_footer .page_navi li,
.l-page_footer .page_navi dt.title {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
}
.l-page_footer .page_navi li,
.l-page_footer .page_navi dl {
  margin-bottom: 3.2rem;
}
.l-page_footer .page_navi dt.title {
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
}
.l-page_footer .page_navi dd {
  font-size: 1.6rem;
  line-height: 1;
  position: relative;
}
.l-page_footer .page_navi dd a {
  display: block;
  font-size: 1.6rem;
  margin-left: 1.6rem;
  margin-bottom: 1.6rem;
  opacity: 1;
}
.l-page_footer .page_navi a:hover {
  opacity: .7;
}
.l-page_footer .page_navi dd::before {
  content: "";
  width: 0.8rem;
  height: 3px;
  background: #2DA4BA;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.l-page_footer .info_navi ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
  line-height: 1;
  gap: 1.6rem 2.4rem;
  margin-bottom: 4.8rem;
}
.l-page_footer .copyright {
  display: block;
  color: #fff;
  font-size: 1.2rem;
}

@media only screen and (min-width: 883px) {
  .l-page_footer {
    padding: 8rem 0;
  }
  .c-btn_to_top {
    right: 30px;
    bottom: 30px;
  }
  .l-page_footer .company_address {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
    margin-bottom: 6.4rem;
  }
  .l-page_footer .company_address dl,
  .l-page_footer .page_navi dl {
    margin-bottom: 0;
  }
  .l-page_footer .company_address dt {
    font-size: 2.4rem;
    line-height: 1;
  }
  .l-page_footer .map {
    margin: 0;
    max-width: 600px;
    height: 200px;
  }
  .l-page_footer .page_navi {
    display: flex;
    justify-content: space-between;
  }
  .l-page_footer .page_navi li {
    margin-bottom: 1.6rem;
  }
  .l-page_footer .info_navi {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .l-page_footer .info_navi ul {
    margin-bottom: 0;
  }
  .l-page_footer .info_navi ul {
    gap: 3.2rem;
  }
  .l-page_footer .info_navi a {
    opacity: 1;
  }
  .l-page_footer .info_navi a:hover {
    opacity: .7;
  }
}

/*==========================================================================
 Object
==========================================================================*/
/*============ component ============*/
/*===== title ====*/
.c-page_title {
  padding-top: 4rem;
  margin-bottom: 4rem;
}
.c-page_title .category {
  color: #666;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: .4rem;
}
.c-page_title h1 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
  padding-bottom: 4rem;
}
.c-page_title h1.no_category {
  margin-top: 1.2rem;
}
@media only screen and (min-width: 883px) {
  .c-page_title {
    padding-top: 10rem;
    margin-bottom: 8rem;
  }
  .c-page_title .category {
    font-size: 1.8rem;
  }
  .c-page_title h1 {
    font-size: 5.6rem;
    line-height: 1.4;
    padding-bottom: 10rem;
  }
  .c-page_title h1.no_category {
    margin-top: 1.8rem;
  }
}

.c-title_primary {
  padding-top: 8rem;
  margin-bottom: 3.2rem;
  color: #000;
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: bold;
}
.c-title_primary .en, .c-page_title .en,
.c-title_primary .ja, .c-page_title .ja {
  display: block;
  font-weight: bold;
}
.c-title_primary .en, .c-page_title .en {
  font-size: 1.8rem;
  line-height: 1;
  color: #C10000;
  margin-bottom: .8rem;
}

@media only screen and (min-width: 883px) {
  .c-title_primary {
    font-size: 5.6rem;
    line-height: 1.4;
    margin-bottom: 5.6rem;
  }
  .c-title_primary .en, .c-page_title .en {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 1.6rem;
  }
}

.c-title_2 {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  padding-bottom: 1.6rem;
  margin-bottom: 3.2rem;
}
.c-title_2::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #ccc;
  position: absolute;
  left: 0;
  bottom: 0;
}
.c-title_2::after {
  content: "";
  width: 100px;
  height: 1px;
  background: #2DA4BA;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (min-width: 883px) {
  .c-title_2 {
    font-size: 3.2rem;
    padding-bottom: 1.6rem;
    margin-bottom: 4.8rem;
  }
  .c-title_2::after {
    width: 200px;
  }
}
.c-title_3 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  border-left: 4px solid #2DA4BA;
  padding-left: 1.2rem;
  margin-bottom: 3.2rem;
}
@media only screen and (min-width: 883px) {
  .c-title_3 {
    font-size: 2.4rem;
    border-left: 6px solid #2DA4BA;
    padding-left: 1.6rem;
    margin-bottom: 3.2rem;
  }
}

.c-title_4 {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 1.6rem;
}
@media only screen and (min-width: 883px) {
  .c-title_4 {
    font-size: 2rem;
  }
}

/*===== breadcrumb ====*/
.c-breadcrumb {
  margin-bottom: 4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.c-breadcrumb ol {
  display: flex;
  margin-bottom: 0.8rem
}
.c-breadcrumb ol li {
  white-space: nowrap;
  font-size: 1.2rem;
  line-height: 1;
  color: #666;
}
.c-breadcrumb ol li a {
  margin-right: .8rem;
  color: #2DA4BA;
}
.c-breadcrumb ol li a span {
  border-bottom: 0 solid transparent;
  transition: border-bottom .3s ease-out;
}
.c-breadcrumb ol li a:hover span {
  border-bottom: 1px solid #2DA4BA;
}
.c-breadcrumb ol li:not(:last-child):after {
  content: "/";
  margin-right: .8rem;
}
@media only screen and (max-width: 884px) {
  .c-breadcrumb {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .c-breadcrumb ol li:first-child {
    margin-left: 2rem;
  }
  .c-breadcrumb ol li:last-child {
    padding-right: 2rem;
  }
}
@media only screen and (min-width: 883px) {
  .c-breadcrumb {
    margin-bottom: 8rem;
    overflow: visible;
  }
  .c-breadcrumb ol {
    margin-bottom: 0;
  }
  .c-breadcrumb ol li {
    font-size: 1.4rem;
  }
  .c-breadcrumb ol li a {
    margin-right: 1.6rem;
  }
  .c-breadcrumb ol li:not(:last-child):after {
    margin-right: 1.6rem;
  }
}
.c-switch_link {
  display: flex;
  border: 2px solid #2DA4BA;
  background: #fff;
  border-radius: 100px;
  margin-bottom: 5.6rem;
}
.c-switch_link li {
  flex: 1;
}
.c-switch_link li a,
.c-switch_link li .selected {
  display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #2DA4BA;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1.6rem;
}
.c-switch_link li .selected {
  color: #fff;
  background: #2DA4BA;
  border-radius: 100px;
}
@media only screen and (min-width: 883px) {
  .c-switch_link {
    border: 3px solid #2DA4BA;
    max-width: 1000px;
    margin: 0 auto 8rem;
  }
  .c-switch_link:hover {
    background: #EAF6F9;
    transition: all .3s ease-out;
  }
  .c-switch_link li a,
  .c-switch_link li .selected {
    font-size: 2.4rem;
    padding: 1.8rem;
  }
}

.c-common_text {
  line-height: 2;
  margin-bottom: 3.2rem;
}
.c-common_text.mb_s {
  margin-bottom: 1.6rem;
}
.c-common_text+.c-title_3,
.s-ol_list+.c-title_3 {
  margin-top: 5.6rem;
}
@media only screen and (min-width: 883px) {
  .c-common_text+.c-title_3 {
    margin-top: 8rem;
  }
}

.c-common_table {
  display: block;
  width: 100%;
  table-layout: fixed;
}
.c-common_table thead,
.c-common_table tbody {
  display: inline-table;
}
.c-common_table thead th,
.c-common_table tbody th {
  background: #EAF6F9;
  font-size: 1.4rem;
  line-height: 1.4;
}
.c-common_table tbody td {
  font-size: 1.4rem;
  line-height: 1.4;
}
.c-common_table thead th,
.c-common_table tbody th,
.c-common_table tbody td {
  padding: .8rem 0;
  border: 1px solid #CCC;
  text-align: center;
  width: 100%;
}
.c-common_table tbody {
  width: 100%;
  table-layout: fixed;
}
.c-common_table tbody th[colspan="2"] {
  width: 145px;
}
.c-common_table tbody th {
  width: 72px;
}
.c-common_table tbody td {
  min-width: 70px;
}

@media only screen and (max-width: 884px) {
  .c-slider {
    margin-left: -2rem;
    margin-right: -2rem;
    overflow: auto;
    position: relative;
    margin-bottom: 1.6rem;
  }
  .c-slider .c-common_table tbody {
    margin: 0 2rem;
  }
  .c-common_table tbody {
    border: 2px solid #ccc;
  }
  .c-slider .c-common_table tbody td {
    width: 70px;
  }
}
@media only screen and (min-width: 883px) {
  .c-common_table {
    border: 1px solid #ccc;
    margin-bottom: 1.6rem;
  }
  .c-common_table thead,
  .c-common_table tbody {
    padding: 1.3rem 1.6rem;
    width: 100%;
    table-layout: fixed;
  }
  .c-common_table thead th[colspan="3"] {
    width: calc(100% / 7 * 3);
  }
  .c-common_table thead th[colspan="2"] {
    width: calc(100% / 7 * 2);
  }
  .c-common_table thead th,
  .c-common_table tbody td {
    width: calc(100% / 7);
  }
  .c-common_table thead th,
  .c-common_table tbody th {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .c-common_table tbody td {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.c-rightup_img_pcflex .right_box {
  text-align: right;
  margin-right: -2rem;
  margin-bottom: 3.2rem;
}
.c-rightup_img_pcflex .right_box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px 0px 0px 20px;
}
@media only screen and (min-width: 1100px) {
  .c-rightup_img_pcflex {
    display: flex;
    flex-direction: row-reverse;
  }
  .c-rightup_img_pcflex .left_box {
    width: calc(680px + 80px);
    width: 100%;
    min-width: 680px;
    margin-right: 8rem;
  }
  .c-rightup_img_pcflex .right_box {
    margin-right: calc(50% - 50vw);
    width: 100vw;
    object-fit: cover;
  }
  .c-rightup_img_pcflex .right_box img {
    height: auto;
    max-height: 500px;
  }
}

figure.bg_glay {
  text-align: center;
  padding: 2rem;
  background: #F7F7F7;
  margin-bottom: 3.2rem;
}

@media only screen and (min-width: 883px) {
  .u-flex_only_pc .left_box {
    margin-right: 8rem;
    flex: 1;
  }
  .u-flex_only_pc .left_box *:last-child {
    margin-bottom: 0;
  }
  .u-flex_only_pc .right_box.bg_glay {
    max-width: 500px;
    flex: 1;
  }
  figure.bg_glay {
    padding: 3.6rem 5rem;
    margin-bottom: 0;
  }
  .u-flex_only_pc figure.bg_glay {
    margin-bottom: auto;
  }
}

.c-slogan_text {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 3.2rem;
}
@media only screen and (min-width: 883px) {
  .c-slogan_text {
    font-size: 2.4rem;
    line-height: 1.6;
  }
}
.c-normal_title {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 3.2rem;
}

/*===== button ====*/
.c-btn_primary {
  display: block;
  width: 100%;
  padding: 1.2rem 1.6rem;
  border: 1px solid #2DA4BA;
  background: #fff;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #2DA4BA;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
}
.c-btn_primary::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../img/icon/arrow-right-single-blue.svg) no-repeat center;
  background-size: 14px 14px;
  margin-left: .4rem;
}
.c-btn_primary:hover {
  color: #fff;
  background: #2DA4BA;
}
.c-btn_primary:hover::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../img/icon/arrow-right-single-white.svg) no-repeat center;
  background-size: 14px 14px;
  margin-left: .4rem;
}
@media only screen and (min-width: 883px) {
  .c-btn_primary {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 1.2rem 1.6rem 1.2rem 2.4rem;
    font-size: 1.6rem;
    line-height: 1;
    transition: background .3s ease-out;
  }
  .c-btn_primary::after {
    right: .8rem;
  }
}

.c-btn_cta {
  position: relative;
  display: block;
  width: 100%;
  background: #2DA4BA;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  padding: 1.8rem 0;
}
.c-btn_cta .wrap {
  position: relative;
}
.c-btn_cta .wrap::after {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  background: url(../img/icon/arrow-right-single-white.svg) no-repeat center;
  background-size: 14px 14px;
  top: 0;
  bottom: 0;
  right: -2.4rem;
  margin: auto;
}
@media only screen and (min-width: 883px) {
  .c-btn_cta {
    position: relative;
    display: block;
    border: 2px solid #2DA4BA;
    border-radius: 8px;
    transition: background .3s ease-out;
  }
  .c-btn_cta {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .c-btn_cta:hover {
    border: 2px solid #2DA4BA;
    background: #fff;
    color: #2DA4BA;
  }
  .c-btn_cta .wrap {
    margin-right: 10px;
  }
  .c-btn_cta .wrap::after {
    width: 16px;
    height: 16px;
    background: url(../img/icon/arrow-right-single-white.svg) no-repeat center;
    background-size: 16px 16px;
  }
  .c-btn_cta:hover .wrap::after {
    background: url(../img/icon/arrow-right-single-blue.svg) no-repeat center;
    background-size: 16px 16px;
  }
}

.c-tel_box {
  position: relative;
  display: inline-block;
  padding: .8rem 0;
  text-align: center;
}
.c-tel_box .wrap {
  display: block;
  margin: 0 auto;
  width: max-content;
  padding-left: 1rem;
}
.c-tel_box .tel {
  display: block;
  font-family: 'PT Serif', serif;
  font-size: 2.8rem;
  line-height: .8;
  font-weight: bold;
}
.c-tel_box .tel::before {
  content: "";
  position: absolute;
  left: -16px;
  background: url(../img/icon/tel-white.svg) no-repeat center/contain;
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
}
.c-tel_box .time {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  font-weight: normal;
}
@media only screen and (min-width: 883px) {
  .c-tel_box {
    padding: 0;
    margin-left: 3.2rem;
  }
  .c-tel_box .tel {
    width: 234px;
    font-size: 3.6rem;
    line-height: .89;
  }
  .c-tel_box .tel::before {
    content: "";
    position: absolute;
    left: -30px;
    background: url(../img/icon/tel-blue.svg) no-repeat center/contain;
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
  }
  .c-tel_box .time {
    font-size: 1.2rem;
  }
}
.c-cta_box .c-tel_box {
  margin-bottom: 1.6rem;
}
.c-cta_box a {
  height: 56px;
}
@media only screen and (min-width: 883px) {
  .c-cta_box .c-tel_box {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 330px) {
  .c-cta_box {
    padding-right: 6% !important;
    padding-left: 6% !important;
  }
}
.c-cta_box.no_btn {
  background: #EAF6F9;
  padding: 2.4rem 0;
  font-size: 1.6rem;
}
.c-cta_box.no_btn .u-block {
  padding-left: 3.95rem;
  padding-right: 3.95rem;
}
.c-cta_box.no_btn .title {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: .8rem;
}
.c-cta_box.no_btn .text span {
  display: inline-block;
}
.c-cta_box.no_btn .c-tel_box {
  margin-top: 3.2rem;
  padding-top: 0;
  padding-left: 3.4rem;
  padding-right: 3.4rem;
  padding-bottom: .2rem;
  margin-bottom: 0;
}
.c-cta_box.no_btn .c-tel_box .tel {
  position: relative;
  font-size: 3.6rem;
  padding-left: 3.3rem;
}
.c-cta_box.no_btn .c-tel_box .tel::before {
  left: 0;
  background: url(../img/icon/tel-blue.svg) no-repeat center/contain;
  background-size: 30px 30px;
  width: 30px;
  height: 30px;
}
.c-cta_box.no_btn .c-tel_box .time {
  font-size: 1.2rem;
  padding-left: 3.3rem;
}
@media only screen and (min-width: 883px) {
  .c-cta_box.no_btn {
    width: 634px;
    padding: 2.4rem 3.9rem 2.4rem 4rem;
  }
  .c-cta_box.no_btn .u-block {
    padding-left: 0;
    padding-right: 0;
  }
  .c-cta_box.no_btn .c-tel_box {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .c-cta_box.no_btn .c-tel_box .tel {
    width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  .c-cta_box.no_btn .c-tel_box .tel {
    font-size: 3rem;
    padding-left: 2.8rem;
  }
  .c-cta_box.no_btn .c-tel_box .time {
    padding-left: 2.8rem;
  }
  .c-cta_box.no_btn .c-tel_box .tel::before {
    left: 0;
    background: url(../img/icon/tel-blue.svg) no-repeat center/contain;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
  }
}
@media only screen and (max-width: 330px) {
  .c-cta_box.no_btn .u-block,
  .c-cta_box.no_btn .c-tel_box {
    padding-left: 0;
    padding-right: 0;
  }
}

/*===== link ====*/
a.c-link_text,
a.c-link_text2 {
  display: inline-block;
  color: #2DA4BA;
}
a.c-link_text span {
  border-bottom: 0 solid transparent;
  transition: border-bottom .3s ease-out;
}
a.c-link_text:hover span {
  border-bottom: 1px solid #2DA4BA;
}
a.c-link_text2 span {
  border-bottom: 1px solid #2DA4BA;
  transition: border-bottom .3s ease-out;
}
a.c-link_text2:hover span {
  border-bottom: 0 solid transparent;
}

.c-link_arrow {
  display: inline-block;
  color: #2DA4BA;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  padding-right: 1.8rem;
}
.c-link_arrow::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/icon/arrow-right-single-blue.svg) no-repeat center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 883px) {
  .c-link_arrow span {
    border-bottom: 1px solid #fff;
    transition: border-bottom .3s ease-out;
  }
  .c-link_arrow:hover span {
    border-bottom: 0 solid transparent;
  }
  .c-link_arrow::after {
    transition: background .3s ease-out;
  }
  .c-link_arrow:hover::after {
    background: url(../img/icon/arrow-right-single.svg) no-repeat center/contain;
  }
}

/*============ project ============*/
/*===== consumer_cta ====*/
.p-consumer_cta {
  position: relative;
  margin-top: 8rem;
  color: #fff;
  z-index: 1;
}
.p-consumer_cta figure {
  margin: 0 auto -3px;
}
.p-consumer_cta figure img {
  width: 100vw;
}
.p-consumer_cta .inner {
  background: linear-gradient(136.36deg, #0A8400 0%, #C8D300 78.06%);
  z-index: 0;
}
.p-consumer_cta .conntent {
  padding-top: 2.4rem;
  padding-bottom: 4rem;
}

.p-consumer_cta .title {
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 1.6rem;
}
.p-consumer_cta p {
  line-height: 1.4;
}
.p-consumer_cta .bold_text {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
}
.p-consumer_cta .c-cta_box {
  margin-top: 2.4rem;
  position: relative;
  color: #000;
  background: #fff;
  border-radius: 10px;
  padding: 2.4rem 2.4rem 1.6rem;
}
.p-consumer_cta .c-cta_box .text {
  color: #000;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 1.6rem;
}
.p-consumer_cta .tel_box {
  padding: .8rem;
}
.p-consumer_cta .tel_box .tel {
  font-size: 2.8rem;
  line-height: 1;
}
.p-consumer_cta .tel_box {
  text-align: center;
  margin-bottom: 1.6rem;
}
@media only screen and (min-width: 883px) {
  .p-consumer_cta {
    padding: 0;
  }
  .p-consumer_cta .u-cw {
    position: relative;
  }
  .p-consumer_cta .u-cw::before {
    content: "";
    position: absolute;
    top: 0;
    left: -175px;
    width: 770px;
    height: 426px;
    background: url(../img/cta/cta_bg_pc@2x.png) no-repeat center;
    background-size: 770px 426px;
  }

  .p-consumer_cta .conntent {
    position: inherit;
    padding-top: 4.8rem;
    width: 700px;
    margin-left: auto;
  }
  .p-consumer_cta .title {
    font-size: 3.6rem;
    margin-bottom: 1.6rem;
  }
  .p-consumer_cta .title .emphasis {
    font-size: 4.4rem;
  }
  .p-consumer_cta .bold_text {
    font-size: 2rem;
    line-height: 1.4;
  }
  .p-consumer_cta .text {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
  .p-consumer_cta .c-btn_primary {
    width: 460px;
  }
  .p-consumer_cta .c-cta_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem 5rem;
    width: 700px;
    height: 108px;
  }
  .p-consumer_cta .c-cta_box .text {
    margin-bottom: .4rem;
  }
  .p-consumer_cta .tel_box .tel::before {
    content: "";
    display: inline-block;
    margin-right: 0.2rem;
    background: url(../img/icon/tel-blue.svg) no-repeat center/contain;
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
  }
  .p-consumer_cta .c-cta_box .c-btn_cta {
    width: 300px;
    height: 50px;
  }
}

/*===== business_cta ====*/
.p-business_cta {
  background: linear-gradient(90.06deg, #2B679D 0.06%, #6CA8DE 99.96%);
  z-index: 1;
}
.p-business_cta .inner {
  padding: 4rem 0;
}
.p-business_cta .title {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.6rem;
}
.p-business_cta .bold_text {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.6rem;
}
.p-business_cta .c-link_arrow {
  color: #fff;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1;
  position: relative;
  padding-right: 1.8rem;
  text-decoration-line: underline;
}
.p-business_cta .c-link_arrow::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icon/arrow-right-single-white.svg) no-repeat center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-business_cta figure {
  text-align: center;
  margin-bottom: -3px;
}

.p-business_cta .c-cta_box {
  position: relative;
  padding: 1.6rem 2.4rem;
  background: #fff;
  border-radius: 10px;
}
.p-business_cta .c-cta_box .c-btn_cta {
  padding: .8rem 0;
}
.p-business_cta .c-cta_box .text {
  color: #000;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-bottom: .8rem;
}
.p-business_cta .c-cta_box a {
  margin-bottom: 0;
}

@media only screen and (min-width: 883px) {
  .p-business_cta.u-cw {
    position: relative;
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
  }
  .p-business_cta::before {
    position: absolute;
    content: "";
    right: 30px;
    bottom: 0;
    width: 418px;
    height: 380px;
    background: url(../img/cta/cta_bg_business＠2x.png) no-repeat center;
    background-size: 418px 380px;
    z-index: -1;
  }
  .p-business_cta .inner {
    margin: 0 5.6rem;
    max-width: 638px;
  }
  .p-business_cta .c-cta_box {
    text-align: center;
  }
  .p-business_cta .c-cta_box .text {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: bold;
  }
  .p-business_cta .c-link_arrow {
    margin-bottom: 2.4rem;
    text-decoration-line: none;
  }
}
@media only screen and (min-width: 1200px) {
  .p-business_cta.u-cw {
    margin-bottom: 12rem;
  }
}

.c-badge_full {
  text-align: center;
}
.c-badge_full .sub {
  margin-top: 1.8rem;
}
.c-badge_full .sub img:not(:last-child) {
  margin-right: 1.8rem;
}
@media only screen and (min-width: 883px) {
  .c-badge_full {
    width: 320px;
    height: 315px;
  }
  .c-badge_full img {
    width: 200px;
    height: 200px;
  }
  .c-badge_full .sub img {
    width: 145px;
    height: 84.46px;
  }
}

.s-ml_box_list {
  margin-left: 3.2rem;
}
.s-ml_box_list .title {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: bold;
}
@media only screen and (min-width: 883px) {
  .s-ml_box_list {
    margin-left: 5.6rem;
  }
  .s-ml_box_list .title {
    font-size: 1.8rem;
  }
}

p.c-common_text+.s-ol_list {
  margin-top: -3.2rem;
}
.s-ol_list {
  padding-left: 2.5rem;
  margin-bottom: 3.2rem;
}
.s-ol_list li {
  position: relative;
  list-style-type: decimal;
  list-style-position: outside;
  font-size: 1.6rem;
  line-height: 2;
}

/*============ utility ============*/
/*===== show/hide ====*/
.u-show_only_pc {
  display: none !important;
}
@media only screen and (min-width: 883px) {
  .u-show_only_pc {
    display: block !important;
  }
}
.u-show_inlineblock_only_pc {
  display: none !important;
}
@media only screen and (min-width: 883px) {
  .u-show_inlineblock_only_pc {
    display: inline-block !important;
  }
}

.u-show_until_tb {
  display: block !important;
}
@media only screen and (min-width: 883px) {
  .u-show_until_tb {
    display: none !important;
  }
}

.u-show_over_tb {
  display: none !important;
}
@media only screen and (min-width: 600px) {
  .u-show_over_tb {
    display: block !important;
  }
}

.u-show_inlineblock_over_tb {
  display: none !important;
}
@media only screen and (min-width: 600px) {
  .u-show_inlineblock_over_tb {
    display: inline-block !important;
  }
}

@media only screen and (min-width: 600px) {
  .u-show_only_sp {
    display: none !important;
  }
}

/*===== content width ====*/
.u-cw {
  display: block;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media only screen and (min-width: 883px) {
  .u-cw {
    max-width: 1200px;
    padding-left: 3.6rem;
    padding-right: 3.6rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 1272px) {
  .u-cw {
    padding-left: 0;
    padding-right: 0;
  }
}
.u-cw_wide {
  display: block;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
}
@media only screen and (min-width: 883px) {
  .u-cw_wide {
    padding-left: 3.6rem;
    padding-right: 3.6rem;
    max-width: calc(1120px + (3.6rem*2));
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 883px) {
  .u-cw_only_pc {
    padding-left: 3.6rem;
    padding-right: 3.6rem;
    max-width: calc(1000px + (3.6rem*2));
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 883px) {
  .u-cw_narrow_only_pc {
    padding-left: 3.6rem;
    padding-right: 3.6rem;
    max-width: calc(1000px + (3.6rem*2));
    margin-left: auto;
    margin-right: auto;
  }
}
.u-cw_only_sp {
  padding-left: 1.8rem;
  padding-right: 1.8rem;
}
@media only screen and (min-width: 883px) {
  .u-cw_only_sp {
    padding-left: 0;
    padding-right: 0;
    max-width: calc(1000px + (3.6rem*2));
  }
}

/*===== position ====*/
.u-relative {
  position: relative;
}
.u-center {
  text-align: center;
}
.u-center_only_sp {
  text-align: center;
}
@media only screen and (min-width: 883px) {
  .u-center_only_sp {
    text-align: left;
  }
  .u-center_only_pc {
    text-align: center;
  }
}
.u-right {
  text-align: right;
}
.u-block {
  display: block;
}
.u-inlineblock {
  display: inline-block;
}

.u-flex {
  display: flex;
}
.u-flex_only_pc {
  display: block;
}
@media only screen and (min-width: 883px) {
  .u-flex_only_pc {
    display: flex;
  }
}

/*===== text ====*/
.u-text_bold {
  font-weight: bold;
}
.u-underline {
  text-decoration: underline;
}
.u-text_red {
  color: #C10000;
}

.u-text_l {
  font-size: 1.8rem;
}
.u-text_s {
  font-size: 1.4rem;
}
.u-text_ss {
  font-size: 1.2rem;
}
.u-lh_2 {
  line-height: 2;
}
.u-lh {
  line-height: 1.8;
}
.u-lh_s {
  line-height: 1.6;
}
.u-lh_ss {
  line-height: 1.4;
}
.u-lh_sss {
  line-height: 1.2;
}

/*===== margin ====*/
.u-mb_ss {
  margin-bottom: .8rem;
}

.u-mb_s {
  margin-bottom: 1.6rem;
}

.u-mb {
  margin-bottom: 2.4rem;
}
@media only screen and (min-width: 883px) {
  .u-mb {
    margin-bottom: 3.2rem;
  }
}

.u-mb_l {
  margin-bottom: 3.2rem;
}
@media only screen and (min-width: 883px) {
  .u-mb_l {
    margin-bottom: 5.6rem;
  }
}

.u-mb_ll {
  margin-bottom: 5.6rem;
}
@media only screen and (min-width: 883px) {
  .u-mb_ll {
    margin-bottom: 8rem;
  }
}

.u-mb_lll {
  margin-bottom: 8rem;
}
@media only screen and (min-width: 883px) {
  .u-mb_lll {
    margin-bottom: 12rem;
  }
}

.u-mb_8 {
  margin-bottom: 8rem;
}

.u-ml_l {
  margin-left: 3.2rem;
}
@media only screen and (min-width: 883px) {
  .u-ml_l {
    margin-left: 5.6rem;
  }
}

.u-mr_s {
  margin-right: 1.6rem;
}

/*===== padding ====*/
.u-pb_l {
  padding-bottom: 3.6rem;
}
@media only screen and (min-width: 883px) {
  .u-pb_l {
    padding-bottom: 5.4rem;
  }
}

.u-pb_ll {
  padding-bottom: 5.4rem;
}
@media only screen and (min-width: 883px) {
  .u-pb_ll {
    padding-bottom: 7.2rem;
  }
}
