@charset "UTF-8";
html {
  font-size: calc(100vw / 1920);
}

:root {
  --font_size_60: 60rem;
  --font_size_48: 48rem;
  --font_size_40: 40rem;
  --font_size_30: 30rem;
  --font_size_28: 28rem;
  --font_size_24: 24rem;
  --font_size_20: 20rem;
  --font_size_18: 18rem;
}

@media screen and (orientation: landscape) and (min-width: 1200px) {
  :root {
    --font_size_60: 45rem;
    --font_size_48: 38rem;
    --font_size_40: 34rem;
    --font_size_30: 28rem;
    --font_size_28: 24rem;
    --font_size_24: 22rem;
    --font_size_20: 18rem;
    --font_size_18: 16rem;
  }
}

@media screen and (max-width: 1080px) {
  :root {
    --font_size_60: 60rem;
    --font_size_48: 48rem;
    --font_size_40: 40rem;
    --font_size_30: 30rem;
    --font_size_28: 28rem;
    --font_size_24: 24rem;
    --font_size_20: 20rem;
    --font_size_18: 18rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --font_size_60: 64rem;
    --font_size_48: 52rem;
    --font_size_40: 45rem;
    --font_size_30: 40rem;
    --font_size_28: 38rem;
    --font_size_24: 36rem;
    --font_size_20: 30rem;
    --font_size_18: 20rem;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --font_size_60: 110rem;
    --font_size_48: 95rem;
    --font_size_40: 90rem;
    --font_size_30: 75rem;
    --font_size_28: 68rem;
    --font_size_24: 65rem;
    --font_size_20: 48rem;
    --font_size_18: 30rem;
  }
}

.element {
  font-size: var(--font_size_24);
}

body {
  /* debug */
  font-size: 100rem;
  font-family: "Hiragino Sans", sans-serif;
  color: #323232;
}

/* header */
header {
  height: 210rem;
  width: 100%;
  background-color: #f7f7f7;
  /* position: fixed; */
  position: relative;
  z-index: 100;
}
.header_container {
  /* padding-top: 40rem; */
  /* padding-bottom: 20rem; */
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.header_logo {
  margin-top: 10rem;
  margin-left: 60rem;
  /* vertical-align: middle; */
}

.header_logo img {
  width: 560rem;
  vertical-align: middle;
}

.header_sp_menu {
  display: none;
}

.header_menu {
  display: flex;
  margin-top: 100rem;
}

.header_menu a {
  font-size: var(--font_size_24);
  font-weight: 500;
}

.header_menu li {
  margin-right: 50rem;
}

@media screen and (min-width: 1201px) {
  header {
    height: 120px;
  }
  .header_container {
    height: inherit;
  }
  .header_logo {
    margin-top: 6.25px;
    margin-left: 37.5px;
    font-size: 24px;
  }
  .header_container nav {
    height: inherit;
  }
  .header_logo img {
    width: 350px;
  }
  .header_menu {
    height: inherit;
    margin-top: 0;
    font-size: 15px;
  }

  .header_menu a {
    font-size: 15px;
  }

  .header_menu li {
    margin-right: 32px;
    padding-bottom: 10px;
    align-self: end;
  }
}

@media screen and (max-width: 480px) {
  header {
    height: 360rem;
  }
  .header_container {
    position: fixed;
    padding-top: 30rem;
    padding-bottom: 25rem;
    width: 100%;
    height: 360rem;
    background-color: #f7f7f7;
  }
  .header_logo img {
    margin-top: 0rem;
    width: 900rem;
  }
  .header_menu {
    /* display: none; */
    visibility: hidden;
    /* display: none; */
    opacity: 0;
    transition: all 0.3s;
    color: #a5001d;
  }
  .header_menu a {
    font-weight: bold;
  }
  .header_menu.active {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
  }

  .header_sp_menu {
    position: relative;
    display: block;
    width: 250rem;
    height: 250rem;
    /* background-color: aquamarine; */
    margin-left: 570rem;
    margin-top: 30rem;
  }
  .header_sp_menu span {
    position: absolute;
    background-color: #323232;
    height: 2px;
    width: 70%;
    margin-left: 15%;
  }
  .header_sp_menu span:nth-child(1) {
    margin-top: 22%;
    transition: all 0.3s;
  }
  .header_sp_menu span:nth-child(2) {
    margin-top: 47%;
    transition: all 0.3s;
  }
  .header_sp_menu span:nth-child(3) {
    margin-top: 72%;
    transition: all 0.3s;
  }

  .header_sp_menu span:nth-child(1).active {
    margin-top: 49%;
    transform: rotate(225deg);
    transition: all 0.3s;
  }
  .header_sp_menu span:nth-child(2).active {
    opacity: 0;
    transition: all 0.3s;
  }
  .header_sp_menu span:nth-child(3).active {
    margin-top: 49%;
    transform: rotate(-225deg);
    transition: all 0.3s;
  }

  .header_menu {
    background-color: #f9f8f5;
    flex-direction: column;
    margin-top: 320rem;
    left: 0;
    right: 0;
    position: absolute;
    width: 100%;
    height: 3000rem;
  }
  .header_menu li {
    margin-right: 0;
    text-align: center;
    margin-top: 300rem;
  }

  .header_menu a {
    font-size: var(--font_size_40);
  }
}

/* footer */

footer {
  background-color: #f9f8f5;
  padding-top: 240rem;
}

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

.footer_logo {
  /* text-align: center; */
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.footer_logo img {
  width: 500rem;
}

.footer_menu a {
  color: #a5001d;
  font-size: var(--font_size_24);
  font-weight: bold;
}

.footer_menu {
  margin-top: 150rem;
  margin-left: 25%;
  margin-right: 25%;
}

@media screen and (min-width: 1201px) {
  .footer {
    padding-top: 150px;
  }

  .footer_logo img {
    width: 312.5px;
  }

  .footer_menu {
    margin-top: 90px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer_menu a {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .footer_logo img {
    width: 900rem;
  }

  .footer_menu {
    /* debug */
    margin-left: 8%;
    margin-right: 8%;
  }
  .footer_menu a {
    color: #a5001d;
    font-size: 52rem;
  }
}

.footer_menu ul {
  display: flex;
  justify-content: center;
  justify-content: space-between;
}

.footer_border {
  margin-top: 90rem;
  background-color: #a5001d;
}

.footer_info {
  padding-top: 80rem;
  padding-left: 20rem;
  padding-right: 20rem;
  padding-bottom: 15rem;
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 1201px) {
  .footer_border {
    margin-top: 56px;
  }

  .footer_info {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
    padding-left: 12.5px;
    padding-right: 12.5px;
    padding-bottom: 10px;
  }

  .footer_border small {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .footer_info {
    padding-top: 120rem;
    text-align: center;
    flex-direction: column;
  }
}

.footer_border small {
  color: #f9f8f5;
  font-size: var(--font_size_20);
}

/* index.html */

.home_img {
  width: 100%;
  height: 815rem;
  object-fit: cover;
}

.home_news {
  margin-top: 120rem;
}

.home_news h2 {
  color: #a5001d;
  font-size: var(--font_size_48);
  font-weight: bold;
}

.home_news_title {
  text-align: center;
  margin-bottom: 15rem;
}

.home_news_title_bottom_border {
  border: solid 5rem#a5001d;
  margin-left: 15%;
  margin-right: 15%;
  margin-bottom: 20rem;
}

@media screen and (orientation: landscape) and (min-width: 1200px) {
  .home_news_title_bottom_border {
    margin-left: 3%;
    margin-right: 3%;
  }
}
@media screen and (max-width: 480px) {
  .home_news_title_bottom_border {
    margin-left: 10%;
    margin-right: 10%;
  }
}

.home_news p {
  font-size: var(--font_size_24);
}

:root {
  --home_news_content_width: 1280rem;
}

.home_news_container {
  width: 1100rem;
  margin-left: calc((100% - var(--home_news_content_width)) / 2);
}

.home_news_content {
  width: var(--home_news_content_width);
  /* height:calc(3*var(--font_size_24)); */
  padding-top: calc(1.05 * var(--font_size_24));
  padding-bottom: calc(1.05 * var(--font_size_24));
  /* padding-left: 180rem; */
  display: flex;
  /* cursor: pointer; */
}
.home_news_content.active p {
  white-space: unset;
}

.home_news_content {
  font-size: var(--font_size_24);
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 480px) {
  .home_news_content {
    font-weight: 500;
  }
}

.home_news_content_date {
  margin-left: 180rem;
  position: relative;
  z-index: -1;
  white-space: nowrap;
}
.home_news_content_text {
  position: relative;
  z-index: -1;
  margin-left: 15rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* .home_news_content_text.active{
    white-space:unset;
} */
.home_news_content_new {
  position: absolute;
  color: #a5001d;
  margin-left: 60rem;
}
@media screen and (max-width: 768px) {
  .home_news_content_new {
    margin-left: 40rem;
  }
}
@media screen and (max-width: 480px) {
  .home_news_content_new {
    margin-left: -20rem;
  }
}

.dashed {
  background-image: linear-gradient(to right, #323232 10rem, transparent 4rem);
  background-size: 35rem 2rem;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.home_news_content_add {
  font-size: var(--font_size_24);
  font-weight: bold;
  margin: 50rem auto;
  text-align: center;
  /* cursor: pointer; */
}
.home_news_content_close {
  /* display: none; */
  font-size: var(--font_size_24);
  font-weight: bold;
  margin: 50rem auto;
  text-align: center;
  /* cursor: pointer; */
}

.home_news_content_add p {
  display: inline-block;
  border-bottom: solid 2rem #323232;
  cursor: pointer;
}
.home_news_content_close p {
  display: inline-block;
  border-bottom: solid 2rem #323232;
  cursor: pointer;
}

@media screen and (max-width: 480px) {
  .home_news_container {
    width: 76%;
  }
  :root {
    /* --home_news_content_width: 1700rem; */
    --home_news_content_width: 1450rem;
  }
  .home_news_content_add {
    font-weight: 500;
  }
  .home_news_content_close {
    font-weight: 500;
  }

  .home_news_content_add p {
    border-bottom: solid 4rem #323232;
  }
  .home_news_content_close p {
    border-bottom: solid 4rem #323232;
  }
  .dashed {
    display: none;
  }
  .dashed {
    /* background-image: linear-gradient(to right, #323232 8px, transparent 8px);
        background-size: 86rem 3rem;
        background-size: 31px 1px;
        background-repeat: repeat-x;
        background-position: left bottom; */
    background-image: none;
    border-bottom: dashed 1px #323232;
  }
  .home_news_content {
    padding-top: calc(1.05 * var(--font_size_20));
    padding-bottom: calc(1.05 * var(--font_size_20));
  }
}
@media screen and (orientation: landscape) and (min-width: 1200px) {
  .home_img {
    height: 700rem;
  }
  :root {
    --home_news_content_width: 1000rem;
  }
  .home_news {
    margin-left: 20%;
    margin-right: 20%;
  }
}

.home_navigation {
  margin-top: 120rem;
  margin-bottom: 150rem;
}

.home_navigation img {
  width: 540rem;
  height: 250rem;
  object-fit: cover;
}

.home_navigation p {
  margin-top: 24rem;
  font-size: var(--font_size_24);
  font-weight: bold;
}

.home_navigation ul {
  display: flex;
  justify-content: space-between;
  margin-left: calc((100% - 3 * 540rem) / 3);
  margin-right: calc((100% - 3 * 540rem) / 3);
}

.home_navigation ul li a {
  display: block;
  transform: translateY(0);
  box-shadow: 0 5rem 5rem rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.home_navigation ul li a:hover {
  transform: translateY(-10rem);
  box-shadow: 0 10rem 10rem rgba(0, 0, 0, 0.2);
}

.home_navigation {
  text-align: center;
}

@media screen and (orientation: landscape) and (min-width: 1200px) {
  .home_navigation img {
    width: 350rem;
    height: 162.037rem;
  }
  .home_navigation ul {
    margin-left: 21.2%;
    margin-right: 21.2%;
  }
}
@media screen and (max-width: 480px) {
  /* .home_navigation ul{
        flex-direction: column;
    }
    .home_navigation img{
        width: 70%;
    }
    .home_navigation ul li{
        margin-top: 150rem;
    } */

  .home_navigation img {
    height: 300rem;
    object-fit: cover;
  }
  /* .home_navigation li:nth-child(1){
        animation: rotation 3s linear infinite;
    }
    .home_navigation li:nth-child(2){
        animation: rotation 0.5s linear infinite;
    }
    .home_navigation li:nth-child(3){
        animation: rotation 0.1s linear infinite;
    } */

  .home_navigation p {
    font-size: var(--font_size_20);
  }
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
}

/* about.html */

.about_subtitle h1 {
  margin-top: 60rem;
  margin-left: 80rem;
  font-size: var(--font_size_40);
  font-weight: bold;
}

.about_red_border {
  border-top: solid 3rem #a5001d;
  /* border: solid 3rem #a5001d; */
  margin-top: 90rem;
  margin-bottom: 15rem;
  margin-left: 17%;
  margin-right: 17%;
  border-bottom: solid 40rem #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .about_red_border {
    border-top: solid 10rem #a5001d;
  }
}

.about_top_text_container {
  margin: 0 auto;
  margin-top: -20rem;
  width: 1180rem;
}

/* .dashed_about{
    font-size: var(--font_size_30);
    background-image: linear-gradient(to right, #323232 10rem, transparent 4rem);
    background-size: 35rem 3rem;
    background-repeat: repeat-x;
    background-position: left bottom;
    display: inline;
} */

/* text-decoration: underline;
border-bottom: 1px dashed black; */

.about_top_text_container p {
  font-size: var(--font_size_30);
  text-align: justify;
}

.about_top_text_content {
  height: 70rem;
}

/* .about_top_text_content_dashed{
    background-image: linear-gradient(to right, #323232 10rem, transparent 4rem);
    background-size: 35rem 2rem;
    background-repeat: repeat-x;
    background-position: left bottom;
} */

.about_top_text_content_dashed {
  background-color: #fff;
  background-image: linear-gradient(90deg, transparent 0%, transparent 30%, #fff 30%, #fff 100%), linear-gradient(180deg, transparent 45rem, #323232 2rem);
  background-size: 35rem 100%, 100% var(--font_size_48);
  line-height: var(--font_size_48);
  padding-bottom: 20rem;
}

@media screen and (orientation: landscape) and (min-width: 1200px) {
  .about_top_text_content_dashed {
    background-image: linear-gradient(90deg, transparent 0%, transparent 30%, #fff 30%, #fff 100%), linear-gradient(180deg, transparent 36rem, #323232 2rem);
  }
}
@media screen and (max-width: 768px) {
  .about_top_text_content_dashed {
    background-image: linear-gradient(90deg, transparent 0%, transparent 30%, #fff 30%, #fff 100%), linear-gradient(180deg, transparent 49rem, #323232 2rem);
  }
}
@media screen and (max-width: 480px) {
  .about_red_border {
    border-top: solid 10rem #a5001d;
    margin-left: 8%;
    margin-right: 8%;
  }
  .about_top_text_container {
    width: 1550rem;
  }
  .about_top_text_content_dashed {
    background-image: linear-gradient(90deg, transparent 0%, transparent 30%, #fff 30%, #fff 100%), linear-gradient(180deg, transparent 90rem, #323232 5rem);
    background-size: 100rem 100%, 100% var(--font_size_48);
    /* line-height: var(--font_size_60); */
  }
}

/* .about_top_text_content_dashed{
    background-image: linear-gradient(90deg, transparent 0%, transparent 30%, #fff 30%, #fff 100%),
    linear-gradient(180deg, transparent 0%, transparent 95%, #323232 100%);
    background-repeat: repeat-x,repeat-y;
    background-size:  4rem 100%,100% 30rem;
    line-height: 30rem;
}
@media screen and (max-width:480px){
    .about_top_text_content_dashed{
        line-height: 50rem;
        background-size:  6rem 100%,100% 50rem;
    }
} */

.about_top_text_content p {
  font-size: var(--font_size_30);
  font-weight: bold;
  padding-top: 20rem;
  padding-left: 30rem;
  padding-bottom: 20rem;
}

@media screen and (orientation: landscape) and (min-width: 1200px) {
  .about_subtitle {
    margin-left: 15%;
  }
  .about_red_border {
    margin-left: 22%;
    margin-right: 22%;
  }
  .about_top_text_container {
    width: 900rem;
  }
}

.about_title_2 {
  margin-top: 140rem;
  color: #a5001d;
  font-size: var(--font_size_60);
  font-weight: bold;
  font-family: "Yu Mincho", "YuMincho";
  text-align: center;
}

.about_text_2 {
  margin-top: 40rem;
  font-size: var(--font_size_40);
  font-family: "Yu Mincho", "YuMincho";
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 480px) {
  .about_title_2 {
    font-size: var(--font_size_40);
  }
  .about_text_2 {
    margin-top: 40rem;
    font-size: var(--font_size_30);
  }
}

.about_content {
  display: flex;
  margin-top: 230rem;
}

.about_content_picture {
  margin-left: 130rem;
}

.about_content_picture img {
  width: 750rem;
  height: 550rem;
  object-fit: cover;
  border-radius: var(--font_size_48);
}

.about_content_text {
  margin-top: 30rem;
  margin-left: 90rem;
  font-size: var(--font_size_28);
  font-weight: 300;
  /* font-weight: bold; */
  width: 820rem;
  line-height: 1.5;
}
.about_content_text {
  text-align: center;
}
.about_content_text p {
  text-align: justify;
}
.about_content_button {
  background-color: #a5001d;
  color: white;
  display: inline-block;
  margin-top: var(--font_size_30);
  padding-top: calc(0.5 * var(--font_size_18));
  padding-bottom: calc(0.5 * var(--font_size_18));
  padding-right: calc(1.3 * var(--font_size_60));
  padding-left: calc(1.3 * var(--font_size_60));
  border-radius: var(--font_size_30);
}

.about_second_content {
  margin-bottom: 240rem;
  flex-direction: row-reverse;
}

.about_second_content_picture {
  margin-right: 130rem;
  margin-left: 100rem;
}
.about_text_2_br {
  display: none;
}

@media screen and (orientation: landscape) and (min-width: 1200px) {
  .about_content {
    margin-top: 140rem;
  }
  .about_picture_container {
    margin-left: 15%;
    margin-right: 15%;
  }
  .about_content_picture img {
    width: 500rem;
    height: 366.666rem;
  }
  .about_content_text {
    margin-right: 50rem;
  }
  .about_second_content_picture {
    margin-right: 80rem;
  }
  .about_second_content_text {
    margin-right: 0rem;
  }
  .about_second_content {
    margin-bottom: 144rem;
  }
}

@media screen and (max-width: 480px) {
  .about_content {
    flex-direction: column;
    text-align: center;
  }
  .about_content_picture {
    margin-left: 0;
  }
  .about_second_content_picture {
    margin-right: 0;
  }
  .about_content_picture img {
    width: 1536rem;
    height: 1126rem;
  }
  .about_content_text {
    margin-left: 7.5%;
    width: 85%;
    text-align: justify;
  }
  .about_second_content_text {
    text-align: center;
  }
  .about_title_2 {
    margin-top: 200rem;
  }
  .about_text_2 {
    margin-top: 100rem;
  }
  .about_text_2_br {
    display: block;
  }
}

/* schedule.html */
.schedule_title {
  background-color: #a5001d;
  padding-top: 30rem;
  padding-bottom: 25rem;
  padding-left: 6%;
}

.schedule_title h1 {
  color: #f9f8f5;
  font-size: var(--font_size_60);
}

.schedule_subtitle {
  margin-top: 70rem;
  margin-left: 140rem;
}

.schedule_subtitle h2 {
  font-size: var(--font_size_40);
  font-weight: bold;
}

.schedule_img {
  margin-top: 60rem;
  text-align: center;
}

.schedule_img img {
  width: 1770rem;
  height: auto;
  aspect-ratio: 600 / 371;
}

@media screen and (orientation: landscape) and (min-width: 1200px) {
  .schedule_subtitle {
    margin-left: 15%;
  }

  .schedule_img img {
    width: 1150rem;
  }
}

@media screen and (max-width: 480px) {
  .schedule_img img {
    height: 1440rem;
    width: auto;
    aspect-ratio: 3418 / 3341;
  }
}

.schedule_contents {
  display: flex;
  margin-bottom: 60rem;
}

.schedule_picture {
  margin-top: 100rem;
  margin-left: 70rem;
}

.schedule_picture img {
  width: 550rem;
  height: 750rem;
  object-fit: cover;
  border-radius: var(--font_size_48);
}

.schedule_contents_title {
  margin-top: 100rem;
  margin-left: 120rem;
  font-size: var(--font_size_40);
  font-weight: bold;
}

.schedule_contents_text {
  margin-top: 50rem;
  margin-left: 120rem;
  font-size: var(--font_size_28);
  font-weight: 300;
  width: 850rem;
  line-height: 1.5;
}

@media screen and (orientation: landscape) and (min-width: 1200px) {
  .schedule_contents {
    margin-right: 18%;
    margin-left: 18%;
  }
  .schedule_picture {
    margin-left: 0rem;
  }
  .schedule_picture img {
    width: 350rem;
    height: 477.27rem;
  }
  .schedule_contents_text {
    /* margin-top: 170rem;
        margin-left: 120rem; */
    width: 700rem;
  }
}

@media screen and (max-width: 480px) {
  .schedule_contents {
    flex-direction: column;
  }
  .schedule_contents_title {
    margin-top: 170rem;
    margin-left: 0;
  }
  .schedule_text {
    text-align: center;
  }
  .schedule_contents_text {
    margin-top: 130rem;
    margin-left: 7.5%;
    margin-right: 7.5%;
    margin-bottom: 200rem;
    width: 85%;
    text-align: justify;
  }
  .schedule_picture {
    text-align: center;
    margin-left: 0;
  }
  .schedule_picture img {
    width: 1200rem;
    height: 1636.32rem;
  }
}

/* company.html */

.company_title {
  background-color: #a5001d;
  padding-top: 30rem;
  padding-bottom: 25rem;
  padding-left: 6%;
}

.company_title h1 {
  color: #f9f8f5;
  font-size: var(--font_size_60);
}

.company_subtitle {
  margin-top: 70rem;
  margin-left: 140rem;
}

.company_subtitle h2 {
  font-size: var(--font_size_40);
  font-weight: bold;
}

.company_table {
  margin: 100rem auto 150rem;
}

.company_table th,
td {
  border-top: 3rem solid #e2e2e2;
  border-bottom: 3rem solid #e2e2e2;
  padding-left: 30rem;
}

.company_table th {
  background-color: #f5f6f8;
  font-weight: bold;
  font-weight: 500;
  font-size: var(--font_size_30);
  line-height: 1.16;
  padding-top: 20rem;
  padding-bottom: 20rem;
  width: 380rem;
  border-right: 3rem solid #e2e2e2;
}

.company_table_th_English {
  font-size: var(--font_size_18);
  font-weight: bold;
}

.company_table td {
  font-size: var(--font_size_30);
  vertical-align: middle;
  width: 1150rem;
  padding-top: var(--font_size_30);
  padding-bottom: var(--font_size_20);
}

.company_table_td_address {
  line-height: 1.5;
}
.company_table_td_address_br {
  display: none;
}

.company_table_td_mini {
  font-size: var(--font_size_24);
  padding: 0;
}

.company_table_td_underbar {
  /* text-decoration: underline solid #323232; */
  display: inline-block;
  border-bottom: solid 2rem #323232;
  /* padding-bottom: 100rem; */
}

.company_table_td_item {
  line-height: 1.5;
}

@media screen and (orientation: landscape) and (min-width: 1200px) {
  .company_table {
    margin-top: 70rem;
  }
  .company_subtitle {
    margin-left: 15%;
  }
  .company_table {
    margin-right: 20%;
    margin-left: 20%;
  }
}
@media screen and (max-width: 480px) {
  .company_table th,
  td {
    border: 6rem solid #b9b9b9;
  }
  .company_table th {
    line-height: 1.6;
  }
  .company_table_th_English {
    display: block;
    line-height: 1;
    height: 5rem;
  }
  .company_table_td_underbar {
    border-bottom: solid 4rem #323232;
  }
  .company_table {
    margin-bottom: 300rem;
  }
  .company_table_td_address_br {
    display: block;
  }
}
