/*リセット
-----------------------------*/
html{
	width: 100%;
}
body{
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 14px;
	min-width: 1100px;
}
body *{
	box-sizing: border-box;
}
.all_wrap{
	overflow: hidden;
}
a{
	color: #2370BF;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*リセット（スマホ）
-----------------------------*/
@media screen and (max-width:1000px){
	body{
		font-size: 14px;
		min-width: 100%;
	}
}
/* 表示非表示切り替え
-----------------------------*/
/* SP */
@media screen and (max-width:736px) {
	.-u-SpNonePcBlock {
		display: none;
	}
	.-u-SpNonePcinline {
		display: none;
	}
	.-u-PcNoneSpBlock {
		display: block;
	}
	.-u-PcNoneSpinline {
		display: inline;
	}
}
/* PC */
@media print, screen and (min-width:737px) {
	.-u-SpNonePcBlock {
		display: block;
	}
	.-u-SpNonePcinline {
		display: inline;
	}
	.-u-PcNoneSpBlock {
		display: none;
	}
	.-u-PcNoneSpinline {
		display: none;
	}
}






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

  共通スタイル

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

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  color: #333333;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a,
button {
  display: inline-block;
  transition: all 0.1s ease-in-out;
}
a:hover,
button:hover {
  transform: scale(1.02);
}

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

ヘッダースタイル

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

.sw-Header_Main {
  background: #e6387f;
  padding: 0 2rem;
}
.sw-Header_MainInner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sw-Header_Logo {
  margin: 0;
  padding-bottom: 0.2rem;
  line-height: 0;
}
.sw-Header_Contact {
  flex: 0 0 44.9rem;
}
.sw-Header_ContactButtons {
  display: flex;
  margin: -0.9rem;
}
.sw-Header_ContactButtonContainer {
  flex: 1;
  padding: 0.9rem;
}
.sw-Header_ContactText {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}
.sw-Header_ContactText::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 0.9rem;
  background: url(../img/header-nav-arrow@2x.png) center/1rem 0.9rem no-repeat;
}
.sw-Header_TelButton {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  height: 5rem;
  text-decoration: none;
}
.sw-Header_TelButton i {
  line-height: 0;
  margin-right: 0.4rem;
}
.sw-Header_MailButton {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 5rem;
  color: #e6387f;
  text-decoration: none;
  font-weight: 600;
}
.sw-Header_MailButton i {
  line-height: 0;
  margin-right: 0.8rem;
  margin-left: 1.2rem;
}

.sw-Header_Menu {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  background: #fff;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sw-Header_MenuBar {
  flex: 0 0 .2rem;
  border-radius: 999rem;
  background: #e6387f;
  margin: .3rem 0;
}
[data-nav-opened="true"] .sw-Header_MenuBar:nth-child(1) {
  transform: translateY(.8rem) rotate(45deg);
}
[data-nav-opened="true"] .sw-Header_MenuBar:nth-child(2) {
  opacity: 0;
}
[data-nav-opened="true"] .sw-Header_MenuBar:nth-child(3) {
  transform: translateY(-.8rem) rotate(-45deg);
}

.sw-Header_Nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 2px solid #e6387f;
}
.sw-Header_NavLink {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  display: block;
  padding: 1.5rem 2.6rem 1.5rem;
  position: relative;
}
.sw-Header_NavLink::after {
  content: "";
  display: none;
  border-bottom: 1rem solid #e6387f;
  border-left: 0.7rem solid transparent;
  border-right: 0.7rem solid transparent;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
[data-page="company"] .sw-Header_NavLink[data-target="company"]::after,
[data-page="bus"] .sw-Header_NavLink[data-target="bus"]::after,
[data-page="safe"] .sw-Header_NavLink[data-target="safe"]::after {
  display: block;
}
@media screen and (max-width: 1000px) {
  .sw-Header {
    position: relative;
  }
  .sw-Header_MainInner {
    padding: 1.5rem 0;
    align-items: center;
  }
  .sw-Header_Footer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: hsla(0, 0%, 100%, 0.9);
    z-index: 1000;
  }
  [data-nav-opened="true"] .sw-Header_Footer {
    display: block;
  }
  .sw-Header_Nav {
    display: block;
    padding: 0;
  }
  .sw-Header_NavItem {
    margin: 0;
    text-align: center;
    border-bottom: 1px solid #cccccc;
  }
  .sw-Header_NavItem:last-child {
    border-bottom: none;
  }
  .sw-Header_NavLink {
    padding: 1.4rem 2rem;
    display: block;
    font-weight: 600;
  }
  [data-page="company"] .sw-Header_NavLink[data-target="company"],
  [data-page="bus"] .sw-Header_NavLink[data-target="bus"],
  [data-page="safe"] .sw-Header_NavLink[data-target="safe"] {
    color: #e6387f;
  }
  .sw-Header_NavLink::after {
    content: none;
  }
  .sw-Header_Contact {
    background: #e6387f;
    text-align: center;
    padding: 1rem 0 0;
  }
  .sw-Header_ContactText {
    margin: 0 0 -1.3rem;
  }
  .sw-Header_ContactButtons {
    display: block;
  }
  .sw-Header_ContactButtonContainer:first-child {
    border-top: none;
  }
  .sw-Header_ContactButtonContainer {
    padding: 0;
    border-top: 1px solid #fff;
  }
  .sw-Header_TelButton {
    border: none;
    height: 6rem;
  }
  .sw-Header_MailButton {
    background: none;
    color: #fff;
    height: 6rem;
  }
}
/* ===============================================

  フッタースタイル

=============================================== */
.sw-Footer {
  position: relative;
}
.sw-Footer_Pagetop {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 0;
}
.sw-Footer_Main {
  background: #e6387f;
  padding: 0 2rem;
}
.sw-Footer_MainInner {
  display: flex;
  justify-content: space-between;
  max-width: 120rem;
  margin: 0 auto;
  padding: 4.4rem 0;
}
.sw-Footer_Content {
  display: flex;
  padding-left: 4.4rem;
}
.sw-Footer_Logo {
  margin: 0 5.8rem 0 0;
  line-height: 0;
}
.sw-Footer_AddressName,
.sw-Footer_AddressText {
  margin: 0;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.4285;
}
.sw-Footer_AddressText {
  letter-spacing: 0.025em;
}
.sw-Footer_Contact {
  margin-left: 2rem;
  flex: 0 0 48rem;
}
.sw-Footer_ContactButtons {
  display: flex;
  margin: -0.9rem;
}
.sw-Footer_ContactButtonContainer {
  flex: 1;
  padding: 0.9rem;
}
.sw-Footer_ContactText {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}
.sw-Footer_ContactText::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 0.9rem;
  background: url(../img/header-nav-arrow@2x.png) center/1rem 0.9rem no-repeat;
}
.sw-Footer_TelButton {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  height: 5.5rem;
  text-decoration: none;
}
.sw-Footer_TelButton i {
  line-height: 0;
  margin-right: 0.4rem;
}
.sw-Footer_MailButton {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 5.5rem;
  color: #e6387f;
  text-decoration: none;
  font-weight: 600;
}
.sw-Footer_MailButton i {
  line-height: 0;
  margin-right: 0.8rem;
  margin-left: 1.2rem;
}
.sw-Footer_Nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 1.1rem 2rem 1.4rem;
  list-style: none;
  border-bottom: 1px solid #e6387f;
}
.sw-Footer_NavItem {
  margin: 0 3.1rem;
  font-size: 1.4rem;
}
.sw-Footer_NavLink {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
[data-page="company"] .sw-Footer_NavLink[data-target="company"],
[data-page="bus"] .sw-Footer_NavLink[data-target="bus"],
[data-page="safe"] .sw-Footer_NavLink[data-target="safe"],
[data-page="privacy"] .sw-Footer_NavLink[data-target="privacy"] {
  color: #e6387f;
}
.sw-Footer_Copyright {
  text-align: center;
  color: #e6387f;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 1rem 2rem 1.4rem;
}
.sw-Footer_Logo p{
	color: #fff;
	font-size: 0.8em;
	text-align: center;
}

@media screen and (max-width: 1000px) {
  .sw-Footer {
    text-align: center;
  }
  .sw-Footer_MainInner {
    display: block;
    padding: 5.6rem 0 2.2rem;
  }
  .sw-Footer_Content {
    padding: 0;
    display: block;
  }
  .sw-Footer_Contact {
    margin: 2.2rem 0 0;
  }
  .sw-Footer_Logo {
    margin: 0 0 1rem;
  }
  .sw-Footer_Logo img {
    width: 13.5rem;
  }
  .sw-Footer_AddressName {
    margin: 0 0 0.4rem;
  }
  .sw-Footer_ContactButtons {
    margin-top: -0.7rem;
  }
  .sw-Footer_TelButton {
    padding: 0;
    height: 3.8rem;
  }
  .sw-Footer_TelButton i img {
    width: 2.1rem;
  }
  .sw-Footer_TelButton img {
    width: 10.5rem;
  }
  .sw-Footer_MailButton {
    height: 3.8rem;
    font-size: 1rem;
  }
  .sw-Footer_MailButton i {
    margin-left: 0;
    margin-right: 0.5rem;
  }
  .sw-Footer_MailButton i img {
    width: 2rem;
  }
  .sw-Footer_Nav {
    flex-flow: row wrap;
    padding-top: 1.6rem;
    padding-bottom: 1.8rem;
  }
  .sw-Footer_NavItem {
    flex: 0 0 50%;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    margin: 0.3rem 0;
  }
  .sw-Footer_Copyright {
    font-size: 1rem;
    letter-spacing: 0;
  }
}

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

 共通パーツスタイル（見出し・ボタン）

=============================================== */
.sw-Title01 {
  margin: 0;
  padding-bottom: 0.4rem;
  font-size: 2.5rem;
  color: #e6387f;
  border-bottom: 2px solid #e6387f;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .sw-Title01 {
    font-size: 2rem;
  }
}

.sw-Button01 {
  appearance: none;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0.8rem;
  margin: 0 auto;
  border-radius: 0.5rem;
  border: none;
  background: url("../img/button01-arrow@2x.png") right 1.2rem top 45%/2.8rem
      0.7rem no-repeat,
    #e6387f;
  max-width: 41.2rem;
}


.btn_box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.btn_box .sf-Manage_ButtonContainer {
	width: 48%;
}

@media screen and (max-width: 1000px) {
.btn_box .sf-Manage_ButtonContainer {
	width: 100%;
}
}


@media screen and (max-width: 1000px) {
  .sw-Button01 {
    padding: 1.5rem;
    font-size: 1.6rem;
  }
}

.sw-Hero {
  background: url("../img/hero-bg-left@2x.png") left -10rem center/33.3rem 16rem
      no-repeat,
    url("../img/hero-bg-right@2x.png") right -10rem center/33.3rem 16rem no-repeat,
    url("../img/hero-bg.jpg") center/cover no-repeat;
  padding: 3.3rem 2rem 3rem;
  border-bottom: 0.4rem solid #e6387f;
}
.sw-Hero_Title {
  font-size: 3rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}
.sw-Hero_Title i {
  display: block;
  line-height: 0;
}
@media screen and (max-width: 1000px) {
  .sw-Hero {
    background: url("../img/hero-bg-left@2x.png") left -18rem center/33.3rem 16rem
        no-repeat,
      url("../img/hero-bg-right@2x.png") right -18rem center/33.3rem 16rem no-repeat,
      url("../img/hero-bg.jpg") center/cover no-repeat;
  }
  .sw-Hero_Title {
    font-size: 2.5rem;
  }
}

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

  TOPページ

=============================================== */
.tp-Hero {
  line-height: 0;
  margin-bottom: -3vw;
  position: relative;
  z-index: 10;
}

.tp-Bus {
  position: relative;
  background-blend-mode: multiply, normal, normal;
  background: url(../img/bus-bg-wave.png) center top 70%/223.5rem auto no-repeat,
    url(../img/bus-bg-people@2x.png) calc(50% - 0.8rem) bottom/128rem 25.7rem
      no-repeat,
    url(../img/bus-bg.png) center top 25.2rem/100% auto no-repeat,
    linear-gradient(
      transparent calc(25.7rem + 11vw),
      #a0f3e6 calc(25.7rem + 11vw)
    );
  text-align: center;
  padding: 0 2rem;
}
.tp-Bus_Inner {
  padding: 28.3rem 0 4.8rem;
}
.tp-Bus_Title {
  margin: 0;
}
.tp-Bus_Text {
  margin: 0.7rem 0 0;
  color: #333;
  font-weight: 300;
}
.tp-Bus_Warning {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
  font-weight: 300;
  position: absolute;
  bottom: 2rem;
  right: 4.2rem;
}
.tp-Bus_ButtonContainer {
  margin: 2.8rem 0 0;
}
.tp-Bus_Button {
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 1.4rem;
  border-radius: 0.5rem;
  background: #e6387f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 41.2rem;
}
.tp-Bus_Button i {
  line-height: 0;
  margin-right: 1.3rem;
}
.tp-Bus_Detail img {
  max-width: initial;
  height: initial;
}
.tp-Bus_Detail[data-target="vanilla"] {
  position: absolute;
  left: calc(50% - 61.8rem);
  top: 12.4rem;
}
.tp-Bus_DetailTitle {
  visibility: hidden;
}
.tp-Bus_Detail:hover .tp-Bus_DetailTitle {
  visibility: visible;
}
.tp-Bus_Detail[data-target="vanilla"] .tp-Bus_DetailTitle {
  margin: 0;
}
.tp-Bus_Detail[data-target="vanilla"] .tp-Bus_DetailImg {
  margin: 0;
  transform: rotate(-14deg);
  position: absolute;
  top: 9.4rem;
  left: 7.6rem;
}
.tp-Bus_Detail[data-target="large"] {
  position: absolute;
  left: calc(50% - 37rem);
  top: 5.2rem;
}
I.tp-Bus_Detail[data-target="large"] .tp-Bus_DetailTitle {
  margin: 0;
}
.tp-Bus_Detail[data-target="large"] .tp-Bus_DetailImg {
  margin: 0;
  transform: rotate(-5deg);
  position: absolute;
  top: 12.6rem;
  left: 6.6rem;
}
.tp-Bus_Detail[data-target="middle"] {
  position: absolute;
  left: calc(50% - 11.6rem);
  top: 5rem;
}
.tp-Bus_Detail[data-target="middle"] .tp-Bus_DetailTitle {
  margin: 0;
}
.tp-Bus_Detail[data-target="middle"] .tp-Bus_DetailImg {
  margin: 0;
  position: absolute;
  top: 11.2rem;
  left: 6rem;
}
.tp-Bus_Detail[data-target="small"] {
  position: absolute;
  left: calc(50% + 12.6rem);
  top: 5.7rem;
}
.tp-Bus_Detail[data-target="small"] .tp-Bus_DetailTitle {
  margin: 0;
}
.tp-Bus_Detail[data-target="small"] .tp-Bus_DetailImg {
  margin: 0;
  transform: rotate(10deg);
  position: absolute;
  top: 12.2rem;
  left: 4rem;
}
.tp-Bus_Detail[data-target="micro"] {
  position: absolute;
  left: calc(50% + 35.3rem);
  top: 11.4rem;
}
.tp-Bus_Detail[data-target="micro"] .tp-Bus_DetailTitle {
  margin: 0;
}
.tp-Bus_Detail[data-target="micro"] .tp-Bus_DetailImg {
  margin: 0;
  transform: rotate(18deg);
  position: absolute;
  top: 12.4rem;
  left: 2.1rem;
}
@media screen and (max-width: 1000px) {
  .tp-Bus {
    background: url(../img/bus-bg-wave.png) center top -20%/114.7rem auto no-repeat,
      url(../img/bus-bg.png) center top 18.7rem/135% auto no-repeat,
      linear-gradient(
        transparent calc(17.6rem + 11vw),
        #a0f3e6 calc(17.6rem + 11vw)
      );
  }
  .tp-Bus_Inner {
    padding: 22rem 0 2.8rem;
  }
  .tp-Bus_Detail {
    position: static !important;
  }
  .tp-Bus_Details {
    position: absolute;
    top: 1.3rem;
    left: 0;
    width: 100%;
  }
  .tp-Bus_Detail {
    width: 30rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 4.4rem;
    margin: 0 auto;
    transform: translateX(-3.3rem);
  }
  .tp-Bus_Details .splide__arrow {
    width: 3rem;
    height: 3rem;
    background: #e6387f;
    top: 13.6rem;
  }
  .tp-Bus_Details .splide__arrow {
    transform: none !important;
  }
  .tp-Bus_Details .splide__arrow--prev {
    left: 2rem;
  }
  .tp-Bus_Details .splide__arrow--next {
    right: 2rem;
  }
  .tp-Bus_Details .splide__arrow svg {
    fill: #fff;
  }
  .tp-Bus_DetailTitle {
    visibility: visible;
    margin: -0.2rem auto 0 !important;
  }
  .tp-Bus_DetailTitle img {
    transform: scale(0.78);
  }
  .tp-Bus_DetailImg {
    position: static !important;
    transform: rotate(0deg) !important;
    margin: 0 auto !important;
  }
  .tp-Bus_DetailImg {
    transform: translate(3.4rem, -2.2rem) !important;
  }
  .tp-Bus_DetailImg img {
    transform: scale(0.89);
  }
  .tp-Bus_Title img {
    max-width: 28rem;
  }
  .tp-Bus_Text {
    text-align: left;
    font-size: 1.4rem;
    line-height: 2.14285;
  }
  .tp-Bus_ButtonContainer {
    margin: 2rem 0 0;
  }
  .tp-Bus_Warning {
    position: static;
    font-size: 1rem;
    margin: 0.4rem 0 0;
  }
}

.tp-Nav {
  max-width: 120rem;
  display: flex;
  padding: 0.8rem;
  margin: 2.8rem auto 0;
}
.tp-Nav_Section {
  flex: 1;
  padding: 1.5rem;
}
@media screen and (max-width: 1000px) {
  .tp-Nav {
    display: block;
    padding: 0 2rem;
    margin: 4rem auto 0;
  }
  .tp-Nav_Section {
    padding: 0 0 3rem;
  }
  .tp-Nav_Section:last-child {
    padding: 0;
  }
}

.tp-Safe {
  height: 100%;
  box-shadow: 0 0 0.6rem hsla(0, 0%, 0%, 0.16);
}
.tp-Safe_Img {
  padding-top: 43.95892%;
  background-size: cover;
  background-position: center center;
}
.tp-Safe_Content {
  padding: 1.6rem 7.4rem 2.6rem;
}
.tp-Safe_Title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #e6387f;
  margin: 0;
  text-align: center;
}
.tp-Safe_Text {
  margin: 0;
}
.tp-Safe_ButtonContainer {
  margin: 1rem 0 0;
}
@media screen and (max-width: 1000px) {
  .tp-Safe_Content {
    padding: 2.4rem 1.9rem 3.4rem;
  }
  .tp-Safe_Title {
    font-size: 2.5rem;
  }
  .tp-Safe_ButtonContainer {
    margin: 1.8rem 0 0;
  }
}


.tp-Company {
  height: 100%;
  box-shadow: 0 0 0.6rem hsla(0, 0%, 0%, 0.16);
}
.tp-Company_Img {
  padding-top: 43.95892%;
  background-size: cover;
  background-position: center center;
}
.tp-Company_Content {
  padding: 1.6rem 7.4rem 2.6rem;
  background: url(../img/company-bg@2x.png) right 5.4rem top 2.4rem/7.8rem
    12.4rem no-repeat;
}
.tp-Company_Title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #e6387f;
  margin: 0;
  text-align: center;
}
.tp-Company_Text {
  margin: 0.4rem 0 0;
}
.tp-Company_ButtonContainer {
  margin: 2.3rem 0 0;
}
@media screen and (max-width: 1000px) {
  .tp-Company_Content {
    padding: 2.4rem 1.9rem 3.4rem;
    background-position: right 2.2rem top 5.6rem;
  }
  .tp-Company_Title {
    font-size: 2.5rem;
  }
  .tp-Company_ButtonContainer {
    margin: 1.6rem 0 0;
  }
}

.tp-CoronaBanner {
  text-align: center;
  margin: 2rem 0 8.8rem;
  padding: 0 1.4rem;
}
@media screen and (max-width: 1000px) {
  .tp-CoronaBanner {
    margin: 2rem 0 9.4rem;
  }
  .tp-CoronaBanner picture {
    display: block;
    margin: -0.2rem;
  }
}
/* ===============================================

  会社案内

=============================================== */
.cp-Detail {
  margin: 10.5rem 0 0;
  padding: 0 2rem;
}
.cp-Detail_Inner {
  max-width: 100rem;
  margin: 0 auto;
}
.cp-Detail_Table {
  width: 100%;
  border-collapse: collapse;
	margin-bottom: 50px;
}
.cp-Detail_Table th,
.cp-Detail_Table td {
  border-bottom: 1px solid #e6387f;
  padding: 1.3rem 0 0.3rem;
  text-align: left;
}
.cp-Detail_box{
  margin-bottom: 80px;
}
.cp-Detail_Map {
  margin: 4.7rem 0 0;
}
@media screen and (max-width: 1000px) {
  .cp-Detail {
    margin: 8rem 0 0;
  }
  .cp-Detail_Table,
  .cp-Detail_Table thead,
  .cp-Detail_Table tbody,
  .cp-Detail_Table tr,
  .cp-Detail_Table th,
  .cp-Detail_Table td {
    display: block;
    line-height: 1.6;
  }
  .cp-Detail_Table th {
    border-bottom: none;
    padding-bottom: 0;
  }
  .cp-Detail_Table td {
    padding-top: 0;
    padding-bottom: 0.6rem;
  }
  .cp-Detail_Map iframe {
    height: 60vw;
  }
}

.cp-Message {
  margin: 14rem 0 0;
  padding: 7rem 2rem 8.8rem;
  background: url("../img/message-bg.jpg") center/cover no-repeat;
  text-align: center;
}
.cp-Message_Text {
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .cp-Message {
    margin: 10rem 0 0;
  }
}

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

貸切バスのご紹介

=============================================== */
.bs-AllDetail {
  margin: 1.8rem 0 14.5rem;
}
.bs-Detail_Inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 6.1rem 4rem 6rem;
  border-bottom: 2px solid #e6387f;
  display: flex;
}
.bs-Detail:nth-child(2n) .bs-Detail_Inner {
  flex-direction: row-reverse;
}
.bs-Detail_Imgarea,
.bs-Detail_Textarea {
  flex: 1;
}
.bs-Detail_Imgarea {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(1rem, -1.5rem);
}
.bs-Detail:nth-child(2n) .bs-Detail_Imgarea {
  transform: translate(5.2rem, 0);
}
.bs-Detail_Title {
  display: flex;
  align-items: center;
  font-size: 3rem;
  line-height: 0.98;
  margin: 0 0 2rem;
  letter-spacing: 0.1em;
}
.bs-Detail_Title span {
  margin-left: 0.3rem;
  margin-top: 0.2rem;
}
.bs-Detail_Title strong {
  font-size: 1.5rem;
  color: #e6387f;
  letter-spacing: 0;
}
.bs-Detail_SubTitle {
  margin: 3.2rem 0 1rem;
  font-size: 1.3rem;
  color: #e6387f;
  border-bottom: 1px solid #e6387f;
}
.bs-Detail_SubTitle span {
  min-width: 14rem;
  display: inline-block;
  padding: 0.25em 0 0.15em;
  border: 1px solid #e6387f;
  border-left-width: 12px;
  border-bottom-width: 0;
  padding-left: 1.4em;
}
.bs-Detail_Text {
  margin: 0;
}
.bs-Detail_Floor {
  margin: 2.4rem 0 0;
}
@media screen and (max-width: 1000px) {
  .bs-AllDetail {
    margin: 0 0 14rem;
  }
  .bs-Detail_Inner {
    display: block;
    padding: 4rem 2rem 8rem;
  }
  .bs-Detail_Title {
    font-size: 2.5rem;
    flex-direction: column;
    text-align: center;
  }
  .bs-Detail_Title span {
    margin: 1.4rem 0 0;
  }
  .bs-Detail_Imgarea {
    transform: none !important;
    text-align: center;
  }
  .bs-Detail_Textarea {
    margin: 3.2rem 0 0;
  }
  .bs-Detail_Floor {
    text-align: center;
  }
}


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

 安全への取り組み

=============================================== */
.sf-Manage {
  margin: 7rem 0 0;
  padding: 8.2rem 2rem 14.5rem;
}
.sf-Manage_Inner {
  max-width: 100rem;
  margin: 0 auto;
}
.sf-Manage_Title {
  margin: 0 0 1rem;
}
.sf-Manage_Text {
  margin: 0 0 7.4rem;
}
.sf-Manage_Section {
  display: flex;
  margin: 3rem 0 0;
  border-top: 5px solid #e6387f;
  box-shadow: 0 0 0.6rem hsla(0, 0%, 0%, 0.15);
}
.sf-Manage_Section:nth-child(even) {
  flex-direction: row-reverse;
}
.noimage{
  display: block;
}
.sf-Manage_SectionImg {
  background-size: cover;
}
.sf-Manage_SectionImg,
.sf-Manage_SectionTextarea {
  flex: 0 0 50%;
}
.sf-Manage_SectionTextarea {
  padding: 3.6rem 7rem 5.3rem;
}
.sf-Manage_SectionTitle {
  margin: 0;
  font-size: 2rem;
  color: #e6387f;
}
.sf-Manage_SectionText {
  margin: 0.8rem 0 0;
  font-weight: 400;
}
.sf-Manage_ButtonContainer {
  margin: 5.3rem 0 0;
}
@media screen and (max-width: 1000px) {
  .sf-Manage {
    margin: 7rem 0 0;
  }
  .sf-Manage_Section {
    display: block;
  }
  .sf-Manage_Text {
    margin: 0 0 5rem;
  }
  .sf-Manage_SectionTitle {
    font-size: 1.8rem;
  }
  .sf-Manage_SectionImg {
    padding-top: 75%;
  }
  .sf-Manage_SectionTextarea {
    padding: 3.2rem 2rem;
  }
}

.sf-Corona {
  margin: 10rem 0 0;
  padding: 8.2rem 2rem 14.5rem;
  background: #f7f7f7;
}
.sf-Corona_Inner {
  max-width: 100rem;
  margin: 0 auto;
}
.sf-Corona_Title {
  margin: 0 0 2.2rem;
}
.sf-Corona_AllImg {
  display: flex;
  margin: -1rem;
}
.sf-Corona_ImgContainer {
  padding: 1rem;
}
.sf-Corona_Section {
  margin: 3rem 0 0;
  padding: 1.8rem 2.6rem 2.4rem;
  border: 1px solid #e6387f;
}
.sf-Corona_SectionTitle {
  font-size: 2rem;
  color: #e6387f;
  margin: 0 0 0.6rem;
}
.sf-Corona_SectionList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sf-Corona_SectionListItem {
  margin-top: 0.5rem;
}
.sf-Corona_SectionListItem::before {
  content: "・";
}
@media screen and (max-width: 1000px) {
  .sf-Corona {
    margin: 11rem 0 0;
    padding: 7rem 2rem 14rem;
  }
  .sf-Corona_Title {
    margin: 0 0 2.4rem;
  }
  .sf-Corona_ImgContainer {
    line-height: 0;
  }
  .sf-Corona_SectionTitle {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 600px) {
  .sf-Corona_AllImg {
    display: block;
    text-align: center;
  }
}

.ct-Form {
  margin: 7.2rem 0 0;
  padding: 0 2rem;
}
.ct-Form_Inner {
  max-width: 100rem;
  margin: 0 auto;
}
.ct-Form_Text {
  text-align: center;
}
.ct-Form_Warning {
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 2rem;
  color: #e50c0c;
  font-weight: 600;
  margin: 4.4rem 0 0;
}
.ct-Form_Main {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 3px solid #e6387f;
  border-bottom: 3px solid #e6387f;
}
.ct-Form_Control {
  display: flex;
  padding: 1.5rem 0 2.1rem;
  border-top: 1px solid #e6387f;
}
.ct-Form_InputContainer {
  flex: 1;
  line-height: 0;
}
.ct-Form_Label {
  flex: 0 0 17.4rem;
  font-size: 1.5rem;
  font-weight: 600;
}
.ct-Form_Label[data-variant="required"]::after {
  content: "※";
  color: #e50c0c;
}
.ct-Form_Input {
  width: 100%;
  appearance: none;
  padding: 0.3em;
  border: 1px solid #333333;
}
.ct-Form_Textarea {
  width: 100%;
  height: 34rem;
  appearance: none;
  padding: 0.3em;
  border: 1px solid #333333;
}
.ct-Form_ButtonContainer {
  margin: 3.6rem 0 0;
}
@media (max-width: 1000px) {
  .ct-Form_Control {
    display: block;
  }
  .ct-Form_Textarea {
    height: 24rem;
  }
}

.ct-Privacy {
  margin: 9rem 0 14rem;
  padding: 0 2rem;
}
.ct-Privacy_Inner {
  max-width: 100rem;
  margin: 0 auto;
}
.ct-Privacy_Text {
  margin: 1rem 0 0;
}

.pr-Privacy {
  margin: 6.8rem 0 14.4rem;
  padding: 0 2rem;
}
.pr-Privacy_Inner {
  max-width: 100rem;
  margin: 0 auto;
}
.pr-Privacy_Title {
  margin: 3.7rem 0 1rem;
}
.pr-Privacy_Text {
  margin: 0;
}

@media (min-width: 1001px) {
  .u-PcNone {
    display: none;
  }
}
@media (max-width: 1000px) {
  .u-SpNone {
    display: none;
  }
}


.safety_management th,.safety_management td {
    border: solid 1px;  /* 枠線指定 */
    padding: 10px;      /* 余白指定 */
}

.safety_management table {
    border-collapse:  collapse; /* セルの線を重ねる */
}

.safety_management thead{
    background-color: #fff7f7;
}

.safety_management ul, ol{
	padding-left: 1em;
}

.safety_management p ,ol , ul{
	margin-top: 0;
	margin-bottom: 2em;
}



/*会社理念*/
.rinen_box {
	
}
.rinen_box h3 {
	margin-bottom: 30px;
}
.rinen_box p.copy {
	text-align: center;
}
.rinen_box ol {
	font-weight: bold;
	width: 72%;
    margin: 0 auto 0 28%;
}
.rinen_box ol li {
	margin-bottom: 10px;
}
@media (max-width: 1020px) {
.rinen_box ol {
	width:100%;
    margin: 0 auto;
}
}


/*セーフティマーク*/
.safety{
	width: 10%;
    position: relative;
    top: 9px;
    left: 10px;
}
