@charset "UTF-8";
/* **************************************
CSS Information

Site URL:
File name:  common.css
Summary:  共通CSS
Created:  2023/03/01
************************************** */
/*=======================================
  Headline
=======================================*/
/*------------------------------
  Heading
-------------------------------*/
/* Subheading-------------*/

/*=======================================
  import
=======================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;600;700&display=swap');
/*=======================================
.js module
.jsOver {}
.jsFade {}
.jsAcc {}
.jsSlider {}
=======================================*/
/*=======================================
  default
=======================================*/
*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    min-width: auto;
  }
}
/*------------------------------
  responsive
-------------------------------*/
.pc {
  display: inherit;
}
.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
}
/*------------------------------
  link
-------------------------------*/
a,
a:link,
a:active {
  color: #000;
  text-decoration: none;
}
a:visited {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
  text-decoration: underline;
}
a[href^="tel:"] {
  cursor: default;
}

/*------------------------------
  other
-------------------------------*/
label {
  cursor: pointer;
}
strong {
  font-weight: bold;
}
sup {
  font-size: 1.4rem;
  vertical-align: super;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
/*=======================================
  header
=======================================*/
.header {
  margin: 0 auto;
  padding: 0;
  font-size: 1.4rem;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 1080px;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .header_inner {
    width: 100%;
    font-weight: normal;
  }
  .header_logo {
    padding: 20px 0;
    width: 100%;
  }
}

/*------------------------------
  nav
-------------------------------*/
nav {
  text-align: left;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
nav ul ul {
  display: block;
}
nav ul li {
  position: relative;
}
nav ul li a {
  display: block;
  text-decoration: none;
  color: #222;
  transition:all .3s;
}
nav ul li li a {
  padding: 10px;
}
nav ul li a:hover {
  color: #999;
}
nav ul li.has-child::before {
  content:'';
  position: absolute;
  right: -15px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-right:2px solid #999;
  transform: rotate(135deg);
}
nav li.has-child ul {
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 4;
  background: #F5F3FF;
  width: 180px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}
nav li.has-child:hover > ul,
nav li.has-child:active > ul {
  visibility: visible;
  opacity: 1;
}
nav li.has-child ul li a {
  color: #222;
  border-bottom: solid 1px rgba(0,0,0,0.6);
}
nav li.has-child ul li:last-child a {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .gnavi {
    display: none;
  }
}

/*------------------------------
  spnavi
-------------------------------*/
@media screen and (max-width: 768px) {
  .spnavi {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #6455A1;
    z-index: 9999;
  }
  .spnavi_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .spnavi_inner li {
    padding: 1rem 0.5rem;
    border-left: 1px dotted #fff;
    width: calc(100% / 4);
    font-size: 1.6rem;
  }
  .spnavi_inner li:first-child {
    border-left: none;
  }
  .spnavi_inner li span {
    font-size: 1rem;
  }
  .spnavi_inner li a {
    color: #fff;
    text-decoration: none;
  }
  .spnavi_inner li.spmenu img {
    width: 2rem;
  }
  .spnavi_inner span {
    display: block;
  }

  /* drawer-------------*/
  #nav_drawer {
    position: relative;
    color: #fff;
  }
  .nav_unshown {
    display: none;
  }
  #nav_open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
  }
  #nav_open span,
  #nav_open span:before,
  #nav_open span:after {
    position: absolute;
    height: 3px;
    width: 27px;
    border-radius: 3px;
    background: #fff;
    display: block;
    content: "";
    cursor: pointer;
  }
  #nav_open span:before {
    bottom: -8px;
  }
  #nav_open span:after {
    bottom: -16px;
  }
  #nav_close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  #nav_content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 90%;
    max-width: 330px;
    height: 100%;
    background: #fff;
    transition: 0.3s ease-in-out;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    text-align: left;
  }
  #nav_content ul {
    margin: 50px 0;
    border-top: 1px solid #ccc;
  }
  #nav_content li {
    display: block;
    border-bottom: 1px solid #ccc;
    width: 100%;
  }
  #nav_content li a {
    display: block;
    color: #231815;
    letter-spacing: 1.5px;
  }
  #nav_content ul.children {
    margin: 0;
    border-top: none;
  }
  #nav_content ul.children li {
    display: block;
    border-bottom: none;
    width: 100%;
  }
  #nav_content .nav_social a {
    display: inline;
    margin-left: 1rem;
    font-size: 2rem;
    color: #231815;
  }
  #nav_input:checked ~ #nav_close {
    display: block;
    opacity: 0.5;
  }
  #nav_input:checked ~ #nav_content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }
}

/*=======================================
  contents - common
=======================================*/
/*------------------------------
  breadcrumb
-------------------------------*/
.breadcrumb {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1;
}
.breadcrumb ul {
  margin: 0 auto;
  padding: 1.6rem 0;
  width: 960px;
}
.breadcrumb ul li {
  display: inline;
  margin: 0 .5rem;
}
.breadcrumb ul li+li::before {
  margin: 0 .5rem 0 0;
  content: " > ";
  color: #aaa;
}
.breadcrumb ul li:first-child {
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  .breadcrumb ul {
    margin: 0 auto;
    padding: 1.6rem 10px;
    width: 100%;
    line-height: 1.5;
  }
}

/*------------------------------
  page header
-------------------------------*/
.page_header {
  margin-bottom: 24px;
  padding: 60px 0;
}
  .ph_common {
    background: url(../img/page_ttl_001.jpg) no-repeat 50% center;
    background-size: cover;
  }
  .ph_proposal {
    background: url(../img/advantage/ttl_bg_proposal.jpg) no-repeat 50% center;
    background-size: cover;
  }
  .ph_quality {
    background: url(../img/advantage/ttl_bg_quality.jpg) no-repeat 50% center;
    background-size: cover;
  }
  .ph_tech {
    background: url(../img/advantage/ttl_bg_tech.jpg) no-repeat 50% center;
    background-size: cover;
  }
  .ph_dcp {
    background: url(../img/business/ttl_bg_dcp.jpg) no-repeat 50% center;
    background-size: cover;
  }
  .ph_polyurethane {
    background: url(../img/business/ttl_bg_polyurethane.jpg) no-repeat 50% center;
    background-size: cover;
  }
  .ph_plate {
    background: url(../img/business/ttl_bg_plate.jpg) no-repeat 50% center;
    background-size: cover;
  }
  .ph_planning {
    background: url(../img/business/ttl_bg_planning.jpg) no-repeat 50% center;
    background-size: cover;
  }
.page_header_inner {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 1080px;
  min-height: 20rem;
}
.page_header_inner h2 {
  padding: 0 16px;
  font-family: 'Shippori Mincho', serif;
  font-weight: bold;
  font-size: 3.6rem;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 768px) {
  .page_header {
    margin-bottom: 12px;
    padding: 30px 0;
  }
  .page_header_inner {
    min-height: 10rem;
  }
  .page_header_inner h2 {
    padding: 0 10px;
    font-size: 2.8rem;
  }
}

/*------------------------------
  page contents
-------------------------------*/
.container {
  position: relative;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  padding-bottom: calc(10vw + 10px);
}
.container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid #F5F3FF;
  border-left: 100vw solid transparent;
}
.contents {
  margin: 0 auto;
}
.inner {
  position: relative;
  margin: 0 auto;
  max-width: 960px;
}
.inner_lead {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 10px;
  }
  .inner_lead {
    padding: 0 10px;
  }
}

/*------------------------------
  heading
-------------------------------*/
.ttl .ttl_en {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  font-family: 'Roboto', sans-serif;
  font-size: 12rem;
  font-weight: bold;
  line-height: 1;
}
.ttl .ttl_en_p {
  color: #F5F3FF;
}
.ttl .ttl_en_w {
  color: #FFF;
}
.ttl_box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 40px;
  min-height: 100px;
  z-index: 999;
}
.ttl_box h2 {
  font-size: 3.6rem;
  font-weight: bold;
}
.ttl_box p {
  width: 600px;
}

@media screen and (max-width: 768px) {
  .ttl .ttl_en {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    font-family: 'Roboto', sans-serif;
    font-size: 6rem;
    font-weight: bold;
    line-height: 1;
  }
  .ttl_box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 20px;
    min-height: auto;
    z-index: 999;
  }
  .ttl_box h2 {
    font-size: 2.8rem;
    font-weight: bold;
  }
  .ttl_box p {
    width: 100%;
  }
}

/*------------------------------
  page anchor menu common
-------------------------------*/
.page_anc {
  margin-bottom: 40px;
  background-color: #F5F3FF;
  font-size: 1.4rem;
}
.page_anc ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.page_anc ul.col3 li {
  width: calc(33.3% - 20px);
}
.page_anc ul.col4 li {
  width: calc(25%);
}
.page_anc ul li {
  border-right: 2px solid #FFF;
  text-align: center;
}
.page_anc ul li:last-child {
  border-right: none;
}
.page_anc ul li a {
  position: relative;
  display: inline-block;
  padding: 10px;
  color: #6455A1;
  font-weight: bold;
}
.page_anc ul li a::before {
  content:'';
  position: absolute;
  right: -16px;
  top: 45%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #6455A1;
  border-right:2px solid #6455A1;
  transform: rotate(135deg);
}

@media screen and (max-width: 768px) {
  .page_anc {
    margin-bottom: 20px;
    background-color: #F5F3FF;
    font-size: 1.2rem;
  }
  .page_anc ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .page_anc ul.col3 li {
    width: 100%;
  }
  .page_anc ul.col4 li {
    width: 50%;
  }
  .page_anc ul li a::before {
    content:'';
    position: absolute;
    right: 0;
    top: 45%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #6455A1;
    border-right:2px solid #6455A1;
    transform: rotate(135deg);
  }
}

/*------------------------------
  page index common
-------------------------------*/
.page_index_point {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.page_index_point_item {
  width: calc(50% - 20px);
}
.page_index_point_item h3 {
  margin-bottom: 24px;
  padding-left: 1.6rem;
  border-left: 3px solid #6455A1;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
}
.page_index_point:nth-child(even) {
	flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .page_index_point {
    margin-bottom: 20px;
  }
  .page_index_point_item {
    width: 100%;
  }
  .page_index_point_item img {
    margin-bottom: 20px;
  }
  .page_index_point_item h3 {
    font-size: 2.8rem;
  }
}

/*------------------------------
  page advantage
-------------------------------*/
.advantage_point_proposal {
  margin-bottom: 80px;
  padding: 240px 0 0 0;
  background: url(../img/advantage/point_bg_proposal.jpg) no-repeat top center;
  background-size: contain;
}
.advantage_point_quality {
  margin-bottom: 80px;
  padding: 240px 0 0 0;
  background: url(../img/advantage/point_bg_quality.jpg) no-repeat top center;
  background-size: contain;
}
.advantage_point_tech {
  margin-bottom: 80px;
  padding: 240px 0 0 0;
  background: url(../img/advantage/point_bg_tech.jpg) no-repeat top center;
  background-size: contain;
}
.advantage_point_inner {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 960px;
  border: 1px solid #6455A1;
  background-color: #FFF;
}
.advantage_point_inner h3 {
  display: block;
  position: relative;
  margin-bottom: 80px;
  padding-top: 40px;
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
}
.advantage_point_inner h3:before {
  display: inline-block;
  position: absolute;
  content: '';
  bottom: -16px;
  left: 50%;
  width: 160px;
  height: 7px;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%);
  background-color: #6455A1;
}
.advantage_point_box {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #6455A1;
}
.advantage_point_box:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.advantage_point_box_item {
  width: calc(50% - 15px);
}
.advantage_point_box_item h4 {
  margin-bottom: 24px;
  padding: 10px 0 0 70px;
  font-size: 3.2rem;
  font-weight: bold;
}
.advantage_point_box_item h4.p01 {
  background-image: url(../img/advantage/ico_point01.png);
  background-image: image-set(url(../img/advantage/ico_point01.png) 1x, url(../img/advantage/ico_point01@2x.png) 2x);
  background-image: -webkit-image-set(url(../img/advantage/ico_point01.png) 1x, url(../img/advantage/ico_point01@2x.png) 2x);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
.advantage_point_box_item h4.p02 {
  background-image: url(../img/advantage/ico_point02.png);
  background-image: image-set(url(../img/advantage/ico_point02.png) 1x, url(../img/advantage/ico_point02@2x.png) 2x);
  background-image: -webkit-image-set(url(../img/advantage/ico_point02.png) 1x, url(../img/advantage/ico_point02@2x.png) 2x);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
.advantage_point_box_item h4.p03 {
  background-image: url(../img/advantage/ico_point03.png);
  background-image: image-set(url(../img/advantage/ico_point03.png) 1x, url(../img/advantage/ico_point03@2x.png) 2x);
  background-image: -webkit-image-set(url(../img/advantage/ico_point03.png) 1x, url(../img/advantage/ico_point03@2x.png) 2x);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
.advantage_link ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .advantage_point_proposal {
    margin-bottom: 20px;
    padding: 60px 0 0 0;
  }
  .advantage_point_quality {
    margin-bottom: 20px;
    padding: 60px 0 0 0;
  }
  .advantage_point_tech {
    margin-bottom: 20px;
    padding: 60px 0 0 0;
  }
  .advantage_point_inner {
    margin: 0 10px;
    padding: 0 10px;
  }
  .advantage_point_inner h3 {
    margin-bottom: 30px;
    padding-top: 20px;
    font-size: 2.8rem;
  }
  .advantage_point_inner h3:before {
    width: 100px;
    height: 4px;
  }
  .advantage_point_box_item {
    width: 100%;
  }
  .advantage_point_box_item h4 {
    margin-bottom: 16px;
    padding: 10px 0 0 60px;
    font-size: 2.4rem;
    font-weight: bold;
  }
  .advantage_link ul li {
    width: 33.33%;
  }
}

/*------------------------------
  page business
-------------------------------*/
/* business_feature */
.business_feature {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
}
.business_feature_item {
  padding: 10px;
  border: 1px solid #6455A1;
  width: calc(50% - 20px);
}
.business_feature_item h3 {
  margin-bottom: 24px;
  padding: 0 0 12px 10px;
  font-size: 2.8rem;
  font-weight: bold;
  border-bottom: 1px solid #6455A1;
}
.business_feature_item h3 span {
  margin-right: 5px;
  color: #6455A1;
}
/* business_usage */
.business_usage .cat_ttl {
  font-size: 2.4rem;
  background-color: #6455A1;
  color: #FFF;
  text-align: center;
}
.business_usage_box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 40px;
}
.business_usage_box_item {
  width: calc(50% - 25px);
}
.business_usage_box_item h3 {
  margin-bottom: 24px;
  padding-left: 20px;
  font-size: 2.8rem;
  font-weight: bold;
  border-left: 3px solid #6455A1;
}
.business_usage_box_item img {
  margin-bottom: 16px;
}
.business_link ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
}
/* business_facility */
.business_facility_box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 40px;
}
.business_facility_box_item {
  width: calc(50% - 25px);
}
.business_facility_box_item h3 {
  margin-bottom: 24px;
  padding-left: 20px;
  font-size: 2.8rem;
  font-weight: bold;
  border-left: 3px solid #6455A1;
}

@media screen and (max-width: 768px) {
  /* business_feature */
  .business_feature {
    gap: 20px;
  }
  .business_feature_item {
    width: 100%;
  }
  .business_feature_item:last-child {
    margin-bottom: 20px;
  }
  .business_feature_item h3 {
    margin-bottom: 16px;
    font-size: 2rem;
  }
  /* business_usage */
  .business_usage .cat_ttl {
    font-size: 1.8rem;
  }
  .business_usage_box {
    gap: 20px;
    margin-bottom: 20px;
  }
  .business_usage_box_item {
    width: 100%;
  }
  .business_usage_box_item h3 {
    margin-bottom: 16px;
    padding-left: 10px;
    font-size: 2rem;
  }
  .business_usage_box_item img {
    margin-bottom: 16px;
  }
  .business_link ul li {
    width: 33.33%;
  }
  /* business_facility */
  .business_facility_box {
    gap: 20px;
    margin-bottom: 20px;
  }
  .business_facility_box_item {
    width: 100%;
  }
  .business_facility_box_item h3 {
    margin-bottom: 16px;
    padding-left: 10px;
    font-size: 2rem;
  }
}

/*------------------------------
  page FAQ
-------------------------------*/
.faq {
  margin-bottom: 40px;
  padding: 24px;
  background-color: #F5F3FF;
}
.faq dt,
.faq dd {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 0 10px 10px 60px;
}
.faq dt {
  margin-bottom: 24px;
  font-weight: 600;
  border-bottom: 1px solid #6455A1;
}
.faq dd + dt {
  margin-top: 1em;
}
.faq dt::before,
.faq dd::before {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0;
  color: #fff;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
}
.faq dt::before {
  background-color: #6455A1;
  content: 'Q';
}
.faq dd::before {
  background-color: #EE7800;
  content: 'A';
}

@media screen and (max-width: 768px) {
  .faq {
    margin-bottom: 10px;
    padding: 10px;
  }
  .faq dt {
    margin-bottom: 16px;
  }
}

/*------------------------------
  page company
-------------------------------*/


/* timeline */
.timeline_section {
  position: relative;
  padding: 0 10px 10px 20px;
}
.timeline_section:not(:last-child)::before,
.timeline_section::after {
  position: absolute;
  content: '';
}
.timeline_section:not(:last-child)::before {
  bottom: 0;
  left: 7px;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background-color: #d6dde3;
}
.timeline_section::after {
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border: 4px solid #6455A1;
  border-radius: 50%;
  background-color: #6455A1;
}
.timeline_content {
  border-bottom: dashed 1px #c6cdd3;
}
.timeline_ttl {
  font-weight: 600;
  margin: 0 auto 16px !important;
  line-height: 1 !important;
}

@media screen and (max-width: 768px) {
}


/*------------------------------
  heading
-------------------------------*/
.contents h2 {
  display: block;
  position: relative;
  margin-bottom: 60px;
  padding-top: 40px;
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
}
.contents h2:before {
  display: inline-block;
  position: absolute;
  content: '';
  bottom: -16px;
  left: 50%;
  width: 160px;
  height: 7px;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%);
  background-color: #6455A1;
}

@media screen and (max-width: 768px) {
  .contents h2 {
    margin-bottom: 30px;
    padding-top: 10px;
    font-size: 2.8rem;
  }
  .contents h2:before {
    width: 100px;
    height: 4px;
  }
}

/*------------------------------
  link
-------------------------------*/
.contents a {
  color: #6455A1;
  text-decoration: underline;
}

/*------------------------------
  paragraph
-------------------------------*/
.contents p {
  margin: 0 0 2rem 0;
  *zoom: 1;
  line-height: 2;
}
.contents p::before,
.contents p::after {
  content: " ";
  display: table;
}
.contents p::after {
  clear: both;
}

@media screen and (max-width: 768px) {}

/*------------------------------
  table
-------------------------------*/
.contents table {
  margin-bottom: 30px;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
}
.contents th {
  padding: 10px;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  vertical-align: middle;
  background: #f5f5f5;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  width: 25%;
}
.contents th {
  font-weight: bold;
}
.contents td {
  padding: 10px;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .contents th {
    display: block;
    width: 100%;
  }
  .contents td {
    display: block;
  }
}

/*------------------------------
  button
-------------------------------*/
.btn_box {
  margin: 0 auto;
  text-align: center;
}
.btn_more {
  display: inline-block;
  position: relative;
  margin: 40px 0 0 0;
  padding: 10px 0;
  background: #FFF;
  color: #6455A1 !important;
  border: 2px solid #6455A1;
  min-width: 450px;
  text-align: center;
}
.btn_more::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #6455A1;
  border-right: 2px solid #6455A1;
  transform: rotate(45deg) translateY(-50%);
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  .btn_more {
    display: inline-block;
    position: relative;
    margin: 20px 0 0 0;
    padding: 10px 0;
    background: #FFF;
    color: #6455A1 !important;
    border: 2px solid #6455A1;
    min-width: auto;
    width: 100%;
    text-align: center;
  }
}


/*=======================================
  contact
=======================================*/
.form {
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
}
.form th,
.form td {
  padding: 2rem;
  vertical-align: middle;
  border-bottom: 1px dotted #ccc;
  text-align: left;
}
.form th {
  width: 250px;
}
.form td {
  width: calc(100% - 250px);
}

@media screen and (max-width: 768px) {
  .form th {
    padding: 1rem;
    border-bottom: none;
  }
  .form td {
    padding: 1rem;
  }
  .form th {
    display: block;
    width: 100%;
  }
  .form td {
    display: block;
    width: 100%;
  }
}

.form_required {
  margin-right: 16px;
  padding: 3px 10px;
  border-radius: 3px;
  background: #EE7800;
  font-size: 14px;
  color: #fff;
}
.form_optional {
  margin-right: 16px;
  padding: 3px 10px;
  border-radius: 3px;
  background: #999;
  font-size: 14px;
  color: #fff;
}
.form_policy {
  height: 150px;
  margin: 50px 0;
  overflow-y: scroll;
  border: 1px solid #c2c2c2;
  border-radius: 3px;
  background: #fff;
}
.form_policy_inner {
  margin: 0;
  padding: 15px 15px 0;
  width: 100%;
  max-width: 820px;
  box-sizing: border-box;
}
.form_policy_inner p {
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .form_policy {
    height: 150px;
    margin: 20px 0;
  }
}

/* destyle回避 */
button,
input,
select,
textarea {
  -webkit-appearance: auto;
  appearance: auto;
  border-width: 1px;
}
input[type="radio"],
input[type="checkbox"] {
  vertical-align: initial;
}
input[type="submit"],
input[type="reset"],
input[type="button"] {
  background-color: #f0f0f0;
  font-size: 0.9em;
  padding: 0.2em 0.4em;
  border: solid 1px #666;
  border-radius: 3px;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  background-color: #ddd;
  cursor: pointer;
}
/* end destyle回避 */

input,
textarea {
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 16px;
}
input[type="text"],
input[type="tel"],
input[type="email"] {
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
}
button[type="submit"] {
  padding: 16px;
  color: #FFF;
  width: 460px;
  background-color: #6455A1;
}
.form_textarea {
  width: 100% !important;
  height: 230px !important;
  padding: 10px 10px 0;
  resize: none;
}
.form_subject {
  display: block !important;
}

@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="tel"],
  input[type="email"] {
    width: 100%;
  }
  button[type="submit"] {
    padding: 16px;
    color: #FFF;
    max-width: 460px;
    width: 100%;
    background-color: #6455A1;
  }
}


/*=======================================
  cta_business
=======================================*/
.cta_business {
  position: relative;
  overflow: hidden;
  padding-bottom: calc(10vw + 10px);
  background-color: #F5F3FF;
}
.cta_business::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid #FFF;
  border-left: 100vw solid transparent;
}
.cta_business_box {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .cta_business_box li {
    width: 50%;
  }
}

/*=======================================
  cta_company
=======================================*/
.cta_company {
  margin: 0 auto;
  width: 960px;
}
.cta_company_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
/* cta */
.cta_contact {
  margin-bottom: 40px;
  text-align: center;
}
.cta_contact h3 {
  margin-bottom: 24px;
  font-size: 3.6rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .cta_company {
    margin: 0 auto 80px auto;
    padding: 0 10px;
    width: 100%;
  }
  .cta_company_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
  .cta_contact {
    margin-bottom: 20px;
    text-align: center;
  }
  .cta_contact h3 {
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: bold;
  }
}

/*=======================================
  footer
=======================================*/
.footer {
  padding: 80px 0;
  letter-spacing: 0.1rem;
  background: #F5F5F5;
  border-top: 6px solid #6455A1;
}
.footer a {
  color: #333;
  text-decoration: none;
}
.footer_inner {
  margin: 0 auto;
  width: 960px;
}
.footer_menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.footer_menu_item img {
  margin-bottom: 20px;
}
.footer_menu_item ul {
  margin-bottom: 20px;
}
.footer_menu_item ul li {
  margin-bottom: 20px;
}
.footer_menu_item ul li ul {
  margin-left: 1.6rem;
}
.footer_menu_item ul li ul li {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .footer {
    display: none;
  }
}

/*------------------------------
  footer - copy
-------------------------------*/
.footer_copy {
  text-align: center;
  font-size: 1.4rem;
}
.footer_copy a {
  color: #333;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .footer_copy {
    margin-bottom: 60px;
    text-align: center;
    font-size: 1.2rem;
  }
}

/*------------------------------
  pagetop
-------------------------------*/
.pagetop {
  display: none;
  position: fixed;
  right: 5px;
  bottom: 12rem;
  height: 50px;
  text-decoration: none;
  transform: rotate(90deg);
  font-size: 90%;
  line-height: 1.5rem;
  color: #6455A1;
  padding: 0 0 0 35px;
  border-top: solid 1px;
}
.pagetop::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}
.pagetop a {
  color: #6455A1;
  text-decoration: none;
}

/*=======================================
  module
=======================================*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.tac {text-align: center;}
.tar {text-align: right;}
.tal {text-align: left;}
.nowrap {white-space: nowrap;}

/*------------------------------
  wp origin
-------------------------------*/
.aligncenter {
  display: block;
  margin: 0 auto 1rem auto;
}
.alignright {
  float: right;
  margin: 0 0 1rem 1.5rem;
}
.alignleft {
  float: left;
  margin: 0 1rem 1.5rem 0;
}

@media screen and (max-width: 768px) {
  .alignright {
    float: none;
    margin: 0 0 1rem 0;
    display: block;
  }
  .alignleft {
    float: none;
    margin: 0 0 1rem 0;
    display: block;
  }
}

/*------------------------------
  plugin
-------------------------------*/


/*=======================================
  Headline
=======================================*/
/*------------------------------
  Heading
-------------------------------*/
/* Subheading-------------*/
