@charset "UTF-8";
/* FONT
---------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Square+Peg&display=swap&family=Concert+One&display=swap&family=Kiwi+Maru&display=swap&family=Righteous&display=swap");
/* FILE
---------------------------------------------------------------------------- */
/* VARIABLE
---------------------------------------------------------------------------- */
/* line 3, app/assets/stylesheets/sompocare/scss/variable.scss */
:root {
  /* Font */
  --main_font: 'Noto Sans JP', sans-serif;
  --en_font: 'Square Peg', cursive;
  --heading_font: 'Concert One', cursive;
  --sub_heading_font: 'Kiwi Maru', serif;
  --num_font: 'Righteous', cursive;
  /* font size */
  --sub_heading_font_size: 22px;
  --large_font_size: 18px;
  --main_font_size: 15px;
  --medium_font_size: 13px;
  --small_font_size: 11px;
  /* font style */
  --main_line_height: 1.6;
  --main_letter_spacing: 0.08em;
  /* color */
  --main_black: #343c3c;
  --col_hero_bg: #e1ecee;
  --col_tomatored: #ff6347;
  --col_tomatored_dark: #DB2000;
  --col_tomatored_hover: #FF8975;
  --col_light_tomatored: #FFE9E5;
  --col_yellow: #F2CD03;
  --col_light_yellow: #FFF8D3;
  --col_yellow_dark: #BE9F02;
  --col_jnr_white: #e6e6e6;
  --col_whitesmoke: #f5f5f5;
  --col_ornithogalum: #FAFAFB;
  --col_usuzumi: #a3a3a2;
  --col_ecru: #FBFAF7;
  --col_light_ecru: #F8F6F1;
  --col_ecru_dark: #E6E1CF;
  --col_lightblue: #4BBFFF;
  --col_light_blue: #E8F1FB;
  --col_blue: #2376DD;
  --col_green: #36B36C;
  --col_light_green: #76D59D;
  --col_purple: #c471ed;
  --col_navy: #273683;
  /* width */
  --max_width: 1080px;
  /* margin */
  --half_margin: .5rem;
  --main_mb_center: 0 auto 3rem;
}

/*  margin: clamp(1rem, 10vw, 3rem);  */
/* BASE
---------------------------------------------------------------------------- */
/* line 3, app/assets/stylesheets/sompocare/scss/base.scss */
* {
  box-sizing: border-box;
}

/* line 7, app/assets/stylesheets/sompocare/scss/base.scss */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  /* line 15, app/assets/stylesheets/sompocare/scss/base.scss */
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* line 21, app/assets/stylesheets/sompocare/scss/base.scss */
body#sompo {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--main_black);
  font-family: var(--main_font);
  font-size: var(--main_font_size);
  text-rendering: optimizeSpeed;
  letter-spacing: var(--main_letter_spacing);
  line-height: var(--main_line_height);
  overflow-x: hidden;
  /* table */
}

/* line 35, app/assets/stylesheets/sompocare/scss/base.scss */
body#sompo a {
  text-decoration: none;
}

/* line 39, app/assets/stylesheets/sompocare/scss/base.scss */
body#sompo fieldset {
  border: 0;
}

/* line 43, app/assets/stylesheets/sompocare/scss/base.scss */
body#sompo ul {
  list-style: none;
}

/* line 47, app/assets/stylesheets/sompocare/scss/base.scss */
body#sompo img {
  vertical-align: top;
}

/* line 51, app/assets/stylesheets/sompocare/scss/base.scss */
body#sompo main {
  flex: 1;
}

/* line 54, app/assets/stylesheets/sompocare/scss/base.scss */
body#sompo main article {
  display: flex;
  align-items: center;
  flex-flow: column;
}

/* line 59, app/assets/stylesheets/sompocare/scss/base.scss */
body#sompo main article section {
  display: flex;
  align-items: center;
  flex-flow: column;
  width: 100%;
  margin-bottom: clamp(2rem, 10vw, 6rem);
  /* &:last-child {
                    margin-bottom: 0;
                } */
}

/* line 74, app/assets/stylesheets/sompocare/scss/base.scss */
body#sompo .top_main {
  padding-top: clamp(2rem, 10vw, 6rem);
}

/* line 79, app/assets/stylesheets/sompocare/scss/base.scss */
body#sompo table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* line 83, app/assets/stylesheets/sompocare/scss/base.scss */
body#sompo table th {
  font-weight: normal;
}

/* line 86, app/assets/stylesheets/sompocare/scss/base.scss */
body#sompo table td {
  box-sizing: border-box;
}

/* GENERAL ELEMENTS
---------------------------------------------------------------------------- */
/* main h2 */
/* line 4, app/assets/stylesheets/sompocare/scss/general_elements.scss */
#sompo {
  /*  TEXT  */
  /*  BR  */
  /*  INDEX  */
  /* COLOR */
  /* FONT */
  /*  SUB  */
  /* MARKER */
}

/* line 7, app/assets/stylesheets/sompocare/scss/general_elements.scss */
#sompo .center_text {
  text-align: center;
}

@media only screen and (max-width: 480px) {
  /* line 7, app/assets/stylesheets/sompocare/scss/general_elements.scss */
  #sompo .center_text {
    text-align: left;
  }
}

/* line 17, app/assets/stylesheets/sompocare/scss/general_elements.scss */
#sompo .brsp {
  display: block;
}

@media screen and (max-width: 600px) {
  /* line 22, app/assets/stylesheets/sompocare/scss/general_elements.scss */
  #sompo .brsp {
    display: none;
  }
}

/* line 26, app/assets/stylesheets/sompocare/scss/general_elements.scss */
#sompo .nowrap {
  white-space: nowrap !important;
  flex-wrap: nowrap !important;
}

/* line 31, app/assets/stylesheets/sompocare/scss/general_elements.scss */
#sompo .main_heading {
  text-align: center;
  margin-bottom: clamp(2rem, 10vw, 4rem);
  font-weight: normal;
}

/* line 36, app/assets/stylesheets/sompocare/scss/general_elements.scss */
#sompo .main_heading span {
  color: var(--col_yellow);
  font-family: var(--heading_font);
  display: block;
  line-height: 1;
  font-size: clamp(1rem, 10vw, 3rem);
}

/* line 43, app/assets/stylesheets/sompocare/scss/general_elements.scss */
#sompo .main_heading small {
  font-size: 60%;
  letter-spacing: 3;
  position: relative;
  display: inline-block;
}

/* line 49, app/assets/stylesheets/sompocare/scss/general_elements.scss */
#sompo .main_heading small:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: black;
  border-radius: 2px;
}

/* line 66, app/assets/stylesheets/sompocare/scss/general_elements.scss */
#sompo .text_col_red {
  color: var(--col_tomatored);
}

/* line 71, app/assets/stylesheets/sompocare/scss/general_elements.scss */
#sompo .fs110 {
  font-size: 110%;
}

/* line 76, app/assets/stylesheets/sompocare/scss/general_elements.scss */
#sompo .sub_heading {
  position: relative;
  font-size: var(--sub_heading_font_size);
  font-family: var(--sub_heading_font);
  font-weight: 400;
  display: block;
  line-height: var(--main_line_height);
  text-align: center;
  margin-bottom: clamp(2rem, 10vw, 4rem);
}

@media only screen and (max-width: 480px) {
  /* line 76, app/assets/stylesheets/sompocare/scss/general_elements.scss */
  #sompo .sub_heading {
    font-size: 120%;
  }
}

/* line 90, app/assets/stylesheets/sompocare/scss/general_elements.scss */
#sompo .sub_heading:before {
  position: absolute;
  bottom: -1rem;
  left: calc(50% - 50px);
  width: 100px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: var(--col_yellow);
}

/* line 103, app/assets/stylesheets/sompocare/scss/general_elements.scss */
#sompo .marker_ecru {
  width: fit-content;
  padding: 0 var(--half_margin);
  background: var(--col_whitesmoke);
  border: 1px solid var(--col_jnr_white);
}

/* line 109, app/assets/stylesheets/sompocare/scss/general_elements.scss */
#sompo .marker_yellow {
  display: inline;
  background: linear-gradient(transparent 40%, var(--col_light_yellow) 0%);
}

/* HEADING
---------------------------------------------------------------------------- */
/* line 6, app/assets/stylesheets/sompocare/scss/heading.scss */
#sompo .inquiryform_ctr h2 {
  font-size: 110%;
  position: relative;
  padding: var(--half_margin) 1rem;
  margin: 0 auto 4rem;
  border: 3px solid var(--main_black);
  color: #333;
  font-weight: bold;
  width: fit-content;
}

/* line 15, app/assets/stylesheets/sompocare/scss/heading.scss */
#sompo .inquiryform_ctr h2:before {
  position: absolute;
  top: 100%;
  left: 50px;
  transform: skew(-25deg);
  height: 15px;
  width: 15px;
  border-right: 3px solid var(--main_black);
  content: "";
}

/* line 28, app/assets/stylesheets/sompocare/scss/heading.scss */
#sompo .job_details_ctr h2 {
  font-size: 120%;
  position: relative;
  border-top: solid 2px var(--main_black);
  border-bottom: solid 2px var(--main_black);
  background: var(--col_light_yellow);
  padding: var(--half_margin) 1rem;
  margin-bottom: 2rem;
}

/* line 36, app/assets/stylesheets/sompocare/scss/heading.scss */
#sompo .job_details_ctr h2:after {
  color: white;
  font-size: 50%;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: '\f0a7\ CHECK';
  background: var(--main_black);
  left: 0px;
  bottom: 100%;
  padding: 0.2rem var(--half_margin);
  border-radius: 5px 5px 0 0;
}

/* line 51, app/assets/stylesheets/sompocare/scss/heading.scss */
#sompo .inquiryform_ctr h3,
#sompo .job_details_tab h3 {
  /* var(--half_margin) */
  width: 100%;
  position: relative;
  padding: var(--half_margin) 1rem;
  border-bottom: 3px solid var(--main_black);
  font-size: 110%;
  margin-bottom: 2rem;
}

/* line 59, app/assets/stylesheets/sompocare/scss/heading.scss */
#sompo .inquiryform_ctr h3:before,
#sompo .job_details_tab h3:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 20%;
  height: 3px;
  content: '';
  background: var(--col_yellow);
}

/* line 68, app/assets/stylesheets/sompocare/scss/heading.scss */
#sompo .inquiryform_ctr h3 i,
#sompo .job_details_tab h3 i {
  margin-right: var(--half_margin);
}

/* add-search
---------------------------------------------------------------------------- */
/* line 3, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo {
  /*tab*/
  /*	.tab_item {
		cursor: pointer;
		width: calc(100%/2);
		padding:.5rem;
		border-bottom: 3px solid #37beb0;
		background-color: #ececec;
		text-align: center;
		color: #37beb0;
		display: block;
		float: left;
		text-align: center;
		font-weight: bold;
		transition: all 0.2s ease;

		&:hover {
			opacity: 0.75;
		}
	}
	input[name="tab_item"] {
		display: none;
	}
	.tab_content {
		display: none;
		padding: 1em 1em 0;
		clear: both;
		overflow: hidden;
	}
	#tab1:checked ~ #tab1_content, #tab2:checked ~ #tab2_content, #tab3:checked ~ #tab3_content, #tab4:checked ~ #tab4_content {
		display: block;
	}
	.tab_container input:checked + .tab_item {
		background-color: #37beb0;
		color: #fff;
	}*/
}

/* line 5, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo .kana-line {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

/* line 12, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo .kana-line li {
  padding: .5rem;
  border-right: 1px solid var(--col_whitesmoke);
  border-bottom: 1px solid var(--col_whitesmoke);
  background-color: white;
}

/* line 19, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo .kana-line li a {
  color: var(--main-black);
}

/* line 22, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo .kana-line li a:hover {
  color: orange;
}

/* line 26, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo .kana-line li a.gray-out {
  color: lightgray;
}

/* line 33, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo.add-search {
  display: flex;
  justify-content: center;
  /*align-items: center;*/
  flex-direction: row;
  background: var(--col_ecru);
  /* table */
}

/* line 40, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo.add-search a {
  color: var(--main-black);
}

/* line 42, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo.add-search a:hover {
  color: orange;
}

/* line 47, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo.add-search table a {
  text-decoration: underline;
}

/* line 51, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo.add-search .add-search-ctr {
  max-width: 880px;
  height: 100%;
  width: 100%;
  position: relative;
}

/* line 56, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo.add-search .add-search-ctr .contents_inner {
  padding: 5%;
  background: white;
}

/* line 59, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo.add-search .add-search-ctr .contents_inner h2 {
  color: white;
  background: var(--main_color);
  border-radius: 2rem;
  font-size: 18px;
  font-family: var(--sub_heading_font);
  font-weight: 400;
  text-align: center;
  margin-bottom: 5%;
}

/* line 74, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo.add-search .tbl_base th {
  width: 60%;
}

/* line 77, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo.add-search .tbl_base th span {
  display: block;
  font-size: 12px;
}

/* line 83, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo.add-search .tbl_base td span {
  display: inline-block;
  margin-right: .5rem;
  font-size: 12px;
  padding: .2rem .5rem .1rem;
  border-radius: 3px;
  background: var(--col_yellow);
}

/* line 92, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo.add-search .tbl_base th, #sompo.add-search .tbl_base td {
  padding: .5rem;
  line-height: 1.4;
}

/* line 100, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo .tab_container {
  padding: 0 2rem;
}

/* line 102, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo .tab_container h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* line 142, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo .prefecture {
  padding: 0 5%;
}

/* line 144, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo .prefecture h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* line 148, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo .prefecture ul {
  font-size: 120%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1rem;
  border-left: 5px solid red;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

/* line 156, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo .prefecture ul a {
  color: var(--main_black);
}

/* line 158, app/assets/stylesheets/sompocare/scss/add-search.scss */
#sompo .prefecture ul a:hover {
  color: orange;
}

/* POSTAL
---------------------------------------------------------------------------- */
/* line 3, app/assets/stylesheets/sompocare/scss/postal_.scss */
.postal {
  /*&.radius {*/
  padding: 3rem var(--half_margin);
  max-width: 1080px;
  width: 96% !important;
  background: var(--col_whitesmoke);
  border-radius: 1rem;
  margin-bottom: 4rem;
  /*}*/
}

/* line 11, app/assets/stylesheets/sompocare/scss/postal_.scss */
.postal:last-child {
  margin-bottom: 0;
}

/* line 15, app/assets/stylesheets/sompocare/scss/postal_.scss */
.postal .form_inner {
  background: var(--col_whitesmoke) !important;
  text-align: center;
}

/* line 18, app/assets/stylesheets/sompocare/scss/postal_.scss */
.postal .form_inner h2 {
  margin-bottom: 1rem;
  /*
				span {
    			background: var(--col_whitesmoke)!important;
				}*/
}

/* line 29, app/assets/stylesheets/sompocare/scss/postal_.scss */
.postal .tbl_base th, .postal .tbl_base td {
  padding: 0.5rem 1rem !important;
}

/* line 31, app/assets/stylesheets/sompocare/scss/postal_.scss */
.postal .tbl_base th span, .postal .tbl_base td span {
  color: gray !important;
  font-size: 11px;
  display: block;
}

/* line 38, app/assets/stylesheets/sompocare/scss/postal_.scss */
.postal .tbl_base th {
  background: white !important;
}

/* line 45, app/assets/stylesheets/sompocare/scss/postal_.scss */
.postal .tab_container h2:before {
  background-image: url(" ") !important;
}

/* line 51, app/assets/stylesheets/sompocare/scss/postal_.scss */
.postal h3 {
  text-align: center !important;
}

/* line 54, app/assets/stylesheets/sompocare/scss/postal_.scss */
.postal h3,
.postal h2 {
  color: var(--main_black);
  font-size: 110%;
  position: relative;
  border-bottom: 5px solid var(--col_light_green);
  line-height: 1.4;
  padding: 0.5em 0.5em 0.5em 1.8em;
}

/* line 62, app/assets/stylesheets/sompocare/scss/postal_.scss */
.postal h3:before,
.postal h2:before {
  /*
			font-family: "Font Awesome 5 Free";
			content: "\f14a";
			font-weight: 900;*/
  content: url();
  background-image: url(/assets/iechika/postal-icon-da3f42cb53d405f547878b34b32b3a10ad15d5b0997d490f930a803acb94874c.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 50px;
  height: 40px;
  top: -0.5rem;
  left: 0.5rem;
}

@media only screen and (max-width: 380px) {
  /* line 62, app/assets/stylesheets/sompocare/scss/postal_.scss */
  .postal h3:before,
.postal h2:before {
    width: 40px;
    height: 30px;
    top: -0;
    left: 0;
  }
}

/* line 84, app/assets/stylesheets/sompocare/scss/postal_.scss */
.postal .form_inner {
  margin: 0 auto !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* PAGETOP
---------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/sompocare/scss/pagetop.scss */
#sompo #page-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
}

/* line 9, app/assets/stylesheets/sompocare/scss/pagetop.scss */
#sompo #page-top a {
  color: white;
  text-align: center;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 50vh;
  transition: 0.3s;
  background: var(--main_black);
}

/* line 23, app/assets/stylesheets/sompocare/scss/pagetop.scss */
#sompo #page-top span {
  width: 0px;
  height: 0px;
  visibility: hidden;
}

/* line 28, app/assets/stylesheets/sompocare/scss/pagetop.scss */
#sompo #page-top a:hover {
  background-color: #cccccc;
}

/* line 30, app/assets/stylesheets/sompocare/scss/pagetop.scss */
#sompo #page-top a:hover::after {
  border-top: 3px solid #f2f2f2;
  border-left: 3px solid #f2f2f2;
}

/* ACCORDION
---------------------------------------------------------------------------- */
/*
For further documentation about CSS Icons, see this pen:
https://codepen.io/stoumann/pen/eYzPVqe
*/
/* line 8, app/assets/stylesheets/sompocare/scss/accordion.scss */
#sompo {
  /* For this demo only */
  /* 4 States of summary */
}

/* line 9, app/assets/stylesheets/sompocare/scss/accordion.scss */
#sompo summary {
  --animdur:.3s;
  --loading-animdur:0.8s;
  --animtf:ease-in;
  --bdw:2px;
  --bdrs:50%;
  --bgc:transparent;
  --c:currentcolor;
  --dots-bgc:silver;
  --icon-size:1rem;
  --size:2rem;
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: var(--half_margin);
  justify-content: flex-start;
}

/* line 26, app/assets/stylesheets/sompocare/scss/accordion.scss */
#sompo summary i.arrow {
  align-items: center;
  margin-left: auto;
  /* background-color: var(--col_yellow);
        border-radius: var(--bdrs); */
  box-sizing: border-box;
  display: inline-flex;
  height: var(--size);
  justify-content: center;
  position: relative;
  transition: background-color var(--animdur) var(--animtf);
  width: var(--size);
}

/* line 39, app/assets/stylesheets/sompocare/scss/accordion.scss */
#sompo summary i.arrow::after, #sompo summary i.arrow::before {
  transform-origin: 50% 50%;
  transition: all var(--animdur) var(--animtf);
}

/* line 46, app/assets/stylesheets/sompocare/scss/accordion.scss */
#sompo summary i.arrow::after {
  background: transparent;
  border-color: var(--c);
  border-style: solid;
  box-sizing: border-box;
  content: '';
  display: inline-block;
  height: var(--icon-size);
  margin: 0;
  position: relative;
  width: var(--icon-size);
  border-width: 0 var(--bdw) var(--bdw) 0;
  top: calc(0px - (var(--icon-size) / 4));
  transform: rotate(45deg);
}

/* line 62, app/assets/stylesheets/sompocare/scss/accordion.scss */
#sompo [open] > summary i.arrow::after {
  top: var(--bdw);
  transform: rotate(45deg) scale(-1);
}

/* line 69, app/assets/stylesheets/sompocare/scss/accordion.scss */
#sompo details {
  height: var(--collapsed);
  overflow: hidden;
  transition: height 300ms cubic-bezier(0.4, 0.01, 0.165, 0.99);
  margin-bottom: var(--half_margin);
}

/* line 76, app/assets/stylesheets/sompocare/scss/accordion.scss */
#sompo details[open] {
  height: var(--expanded);
}

/* line 82, app/assets/stylesheets/sompocare/scss/accordion.scss */
#sompo .inquiryform_tab summary {
  border-color: var(--col_jnr_white);
  background: var(--col_jnr_white);
}

/* line 88, app/assets/stylesheets/sompocare/scss/accordion.scss */
#sompo summary {
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--col_yellow);
  background: var(--col_light_yellow);
  border-radius: 5px;
  list-style-type: none;
  outline: none;
  padding-bottom: 0.2rem;
  padding-top: 0.2rem;
  padding-inline-end: var(--half_margin);
  padding-inline-start: 1rem;
  user-select: none;
  --bgc:hsl(195, 10%, 90%);
}

/* line 102, app/assets/stylesheets/sompocare/scss/accordion.scss */
#sompo summary::marker, #sompo summary::-webkit-details-marker {
  display: none;
}

/* line 111, app/assets/stylesheets/sompocare/scss/accordion.scss */
#sompo [open] > summary {
  --bgc:hsl(195, 10%, 20%);
  /* --c:hsl(195, 10%, 92%); */
}

@keyframes dots {
  0% {
    background-color: var(--c);
  }
  50%,
100% {
    background-color: var(--dots-bgc);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}

/* REMODAL
---------------------------------------------------------------------------- */
/* line 3, app/assets/stylesheets/sompocare/scss/modal.scss */
#sompo {
  /* modal
---------------------------------------------------------------------------- */
}

/* line 4, app/assets/stylesheets/sompocare/scss/modal.scss */
#sompo .remodal {
  padding: 0;
}

/* line 6, app/assets/stylesheets/sompocare/scss/modal.scss */
#sompo .remodal .js-modal-close {
  text-decoration: none;
  color: var(--col_yellow);
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
}

/* line 19, app/assets/stylesheets/sompocare/scss/modal.scss */
#sompo .modal__content {
  height: auto;
}

/* line 22, app/assets/stylesheets/sompocare/scss/modal.scss */
#sompo .modal__content .job_search_inner h3 {
  text-align: center;
}

/* line 29, app/assets/stylesheets/sompocare/scss/modal.scss */
#sompo .modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000000;
}

/* line 37, app/assets/stylesheets/sompocare/scss/modal.scss */
#sompo .modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

/* line 43, app/assets/stylesheets/sompocare/scss/modal.scss */
#sompo .modal__content {
  background: #fff;
  left: 50%;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

/* line 52, app/assets/stylesheets/sompocare/scss/modal.scss */
#sompo .modal__content .modal-title {
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
}

/* line 58, app/assets/stylesheets/sompocare/scss/modal.scss */
#sompo .modal__content .js-modal-close {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 3rem;
  color: #009061;
}

/* line 65, app/assets/stylesheets/sompocare/scss/modal.scss */
#sompo .modal__content .modal-hidden {
  overflow-x: hidden;
  height: 85%;
  padding: 0 .5rem 1rem;
}

/* line 69, app/assets/stylesheets/sompocare/scss/modal.scss */
#sompo .modal__content .modal-hidden .postal-code {
  width: 100%;
  padding: 8px;
  border: solid 1px #6d6d6d;
  margin-top: 10px;
  font-size: 16px;
  border-radius: 5px;
}

@media screen and (min-width: 559px) {
  /* line 81, app/assets/stylesheets/sompocare/scss/modal.scss */
  #sompo .modal__content {
    width: 70%;
  }
}

@media screen and (max-width: 559px) {
  /* line 86, app/assets/stylesheets/sompocare/scss/modal.scss */
  #sompo .modal__content .modal-hidden .modal-content__chi .modal-check.active {
    display: block;
  }
}

@media screen and (max-width: 559px) {
  /* line 91, app/assets/stylesheets/sompocare/scss/modal.scss */
  #sompo .modal__content .modal-hidden .modal-content__chi .modal-check label {
    width: 100%;
  }
}

@media screen and (min-width: 559px) {
  /* line 99, app/assets/stylesheets/sompocare/scss/modal.scss */
  #sompo .modal__content .confilm-area button {
    width: 45%;
  }
}

@media screen and (min-width: 559px) {
  /* line 104, app/assets/stylesheets/sompocare/scss/modal.scss */
  #sompo .modal__content .confilm-area button img {
    left: 20px;
    top: 19px;
  }
}

/* VIDEO
---------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/sompocare/scss/video.scss */
#sompo .video_ctr {
  padding: 2rem 1rem;
  width: 100vw;
  position: relative;
  margin-bottom: 2rem;
  background: -webkit-linear-gradient(bottom left, var(--col_yellow) 0%, var(--col_yellow) 50%, var(--col_whitesmoke) 50%, var(--col_whitesmoke) 100%);
  background: -o-linear-gradient(bottom left, var(--col_yellow) 0%, var(--col_yellow) 50%, var(--col_whitesmoke) 50%, var(--col_whitesmoke) 100%);
  background: linear-gradient(to top right, var(--col_yellow) 0%, var(--col_yellow) 50%, var(--col_whitesmoke) 50%, var(--col_whitesmoke) 100%);
}

@media only screen and (max-width: 480px) {
  /* line 4, app/assets/stylesheets/sompocare/scss/video.scss */
  #sompo .video_ctr {
    padding: 10% 5%;
  }
}

/* line 17, app/assets/stylesheets/sompocare/scss/video.scss */
#sompo .video_ctr h4 {
  font-size: 120%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 1rem;
}

/* line 25, app/assets/stylesheets/sompocare/scss/video.scss */
#sompo .video_ctr h4 i {
  margin-right: var(--half_margin);
}

/* line 29, app/assets/stylesheets/sompocare/scss/video.scss */
#sompo .video_ctr h4::before, #sompo .video_ctr h4::after {
  content: '';
  width: 3px;
  height: 25px;
  background: var(--main_black);
}

/* line 36, app/assets/stylesheets/sompocare/scss/video.scss */
#sompo .video_ctr h4::before {
  margin-right: 30px;
  transform: rotate(-35deg);
}

/* line 41, app/assets/stylesheets/sompocare/scss/video.scss */
#sompo .video_ctr h4::after {
  margin-left: 30px;
  transform: rotate(35deg);
}

/* line 46, app/assets/stylesheets/sompocare/scss/video.scss */
#sompo .video_ctr .video_inner {
  /*var(--main_black);*/
  /*
            width: 100%;
            max-width: 600px;
            padding: 1rem;
            background: white;
            border-radius: 1rem;
            margin: 0 auto;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;*/
  width: 100%;
  max-width: fit-content;
  padding: 1rem;
  background: white;
  border-radius: 1rem;
  margin: 0 auto;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media only screen and (max-width: 480px) {
  /* line 46, app/assets/stylesheets/sompocare/scss/video.scss */
  #sompo .video_ctr .video_inner {
    padding: 2%;
  }
}

/* line 67, app/assets/stylesheets/sompocare/scss/video.scss */
#sompo .video_ctr .video-js,
#sompo .video_ctr iframe {
  height: auto;
  border: solid 7px white;
  box-shadow: 10px 10px 23px #ededed, -10px -10px 23px white;
}

/* line 73, app/assets/stylesheets/sompocare/scss/video.scss */
#sompo .video_ctr .video-js.yoko,
#sompo .video_ctr iframe.yoko {
  aspect-ratio: 16 / 9;
  width: clamp(280px, 70vw, 800px);
}

/* line 78, app/assets/stylesheets/sompocare/scss/video.scss */
#sompo .video_ctr .video-js.tate,
#sompo .video_ctr iframe.tate {
  aspect-ratio: 9 / 16;
  width: clamp(280px, 50vw, 320px);
}

/* line 84, app/assets/stylesheets/sompocare/scss/video.scss */
#sompo .video_ctr .video-js {
  color: white;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-top: 56.25%;
}

/* line 91, app/assets/stylesheets/sompocare/scss/video.scss */
#sompo .video_ctr .video-js .vjs-tech {
  outline: none;
}

/* line 94, app/assets/stylesheets/sompocare/scss/video.scss */
#sompo .video_ctr .video-js .vjs-big-play-button:focus {
  background: none;
}

/* line 97, app/assets/stylesheets/sompocare/scss/video.scss */
#sompo .video_ctr .video-js:hover .vjs-big-play-button, #sompo .video_ctr .video-js .vjs-big-play-button {
  height: 90px;
  width: 90px;
  border: 3px solid white;
  border-radius: 50%;
  /*形を丸に*/
  font-size: 5em;
  line-height: 90px;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* line 111, app/assets/stylesheets/sompocare/scss/video.scss */
#sompo .video_ctr .video-js .vjs-big-play-button:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/* line 121, app/assets/stylesheets/sompocare/scss/video.scss */
#sompo .video_ctr .video-js .vjs-control-bar {
  background: var(--main_black);
}

/* movie list
---------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/sompocare/scss/movie_list.scss */
.movie_list_ctr {
  width: 100%;
  max-width: 1080px;
  padding: 0 1rem;
}

/* line 9, app/assets/stylesheets/sompocare/scss/movie_list.scss */
.movie_list_ctr .movie_scroll_ctr {
  display: flex;
  flex-wrap: wrap;
  margin: var(--main_mb_center);
  background: white;
  gap: 4rem 5%;
}

@media only screen and (max-width: 480px) {
  /* line 9, app/assets/stylesheets/sompocare/scss/movie_list.scss */
  .movie_list_ctr .movie_scroll_ctr {
    gap: 3rem 2%;
  }
}

/* line 20, app/assets/stylesheets/sompocare/scss/movie_list.scss */
.movie_list_ctr .video_inner {
  text-align: center;
}

/* line 23, app/assets/stylesheets/sompocare/scss/movie_list.scss */
.movie_list_ctr .video_inner .video-js,
.movie_list_ctr .video_inner iframe {
  width: 100%;
  border-radius: .6rem;
  border: 1px solid #EEE;
  background: #EEE;
}

/* line 31, app/assets/stylesheets/sompocare/scss/movie_list.scss */
.movie_list_ctr .video_inner h2 {
  text-align: left;
  font-size: 16px;
  padding: .5rem;
}

/* line 39, app/assets/stylesheets/sompocare/scss/movie_list.scss */
.movie_list_ctr.tate-ctr .video_inner {
  width: calc(90%/3);
}

@media only screen and (max-width: 600px) {
  /* line 39, app/assets/stylesheets/sompocare/scss/movie_list.scss */
  .movie_list_ctr.tate-ctr .video_inner {
    width: calc(95%/2);
  }
}

@media only screen and (max-width: 480px) {
  /* line 39, app/assets/stylesheets/sompocare/scss/movie_list.scss */
  .movie_list_ctr.tate-ctr .video_inner {
    width: calc(70%/1);
    margin-left: auto;
    margin-right: auto;
  }
}

/* line 49, app/assets/stylesheets/sompocare/scss/movie_list.scss */
.movie_list_ctr.tate-ctr .video_inner .video-js,
.movie_list_ctr.tate-ctr .video_inner iframe {
  aspect-ratio: 9 / 16;
}

/* line 56, app/assets/stylesheets/sompocare/scss/movie_list.scss */
.movie_list_ctr.yoko-ctr .video_inner {
  width: calc(95%/2);
}

@media only screen and (max-width: 480px) {
  /* line 56, app/assets/stylesheets/sompocare/scss/movie_list.scss */
  .movie_list_ctr.yoko-ctr .video_inner {
    width: calc(90%/1);
    margin-left: auto;
    margin-right: auto;
  }
}

/* line 63, app/assets/stylesheets/sompocare/scss/movie_list.scss */
.movie_list_ctr.yoko-ctr .video_inner .video-js,
.movie_list_ctr.yoko-ctr .video_inner iframe {
  aspect-ratio: 16 / 9;
}

/* ICON
---------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/sompocare/scss/icon.scss */
#sompo .list_icon_ctr {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin-bottom: 1rem;
}

/* line 9, app/assets/stylesheets/sompocare/scss/icon.scss */
#sompo .list_icon_ctr ul {
  font-size: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}

/* line 14, app/assets/stylesheets/sompocare/scss/icon.scss */
#sompo .list_icon_ctr ul li {
  padding: 0 var(--half_margin) 0;
  color: white;
}

/* line 19, app/assets/stylesheets/sompocare/scss/icon.scss */
#sompo .list_icon_ctr ul.lightblue li {
  background: var(--col_lightblue);
}

/* line 24, app/assets/stylesheets/sompocare/scss/icon.scss */
#sompo .list_icon_ctr ul.blue li {
  background: var(--col_blue);
}

/* line 29, app/assets/stylesheets/sompocare/scss/icon.scss */
#sompo .list_icon_ctr ul.red li {
  background: var(--col_tomatored);
}

/* line 34, app/assets/stylesheets/sompocare/scss/icon.scss */
#sompo .list_icon_ctr ul.green li {
  background: var(--col_green);
}

/* line 42, app/assets/stylesheets/sompocare/scss/icon.scss */
#sompo .search_list_detail_inner .list_icon_ctr {
  margin-bottom: 0;
}

/* line 47, app/assets/stylesheets/sompocare/scss/icon.scss */
#sompo ul.shift_icon_ctr {
  font-size: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}

/* line 52, app/assets/stylesheets/sompocare/scss/icon.scss */
#sompo ul.shift_icon_ctr li {
  padding: 0 var(--half_margin) 0;
  color: white;
  background: var(--col_navy);
}

/* line 56, app/assets/stylesheets/sompocare/scss/icon.scss */
#sompo ul.shift_icon_ctr li.gray {
  color: var(--col_main);
  background: var(--col_jnr_white);
}

/* line 60, app/assets/stylesheets/sompocare/scss/icon.scss */
#sompo ul.shift_icon_ctr li.purple {
  background: var(--col_purple);
}

/* BREADCRUMB
---------------------------------------------------------------------------- */
/* line 5, app/assets/stylesheets/sompocare/scss/breadcrumb.scss */
#sompo #breadcrumb {
  display: flex;
  align-items: center;
  background: var(--col_whitesmoke);
  border-top: 1px solid var(--col_jnr_white);
  border-bottom: 1px solid var(--col_jnr_white);
  font-size: var(--small_font_size);
  padding: 0.1rem var(--half_margin) 0.3rem;
}

/* line 16, app/assets/stylesheets/sompocare/scss/breadcrumb.scss */
#sompo #breadcrumb ul li {
  display: inline;
  list-style: none;
  color: gray;
}

/* line 21, app/assets/stylesheets/sompocare/scss/breadcrumb.scss */
#sompo #breadcrumb ul li:after {
  padding: 0 6px;
  color: rgba(0, 0, 0, 0.2);
  content: ">";
  font-size: 14px;
}

/* line 28, app/assets/stylesheets/sompocare/scss/breadcrumb.scss */
#sompo #breadcrumb ul li:last-child:after {
  content: "";
}

/* line 32, app/assets/stylesheets/sompocare/scss/breadcrumb.scss */
#sompo #breadcrumb ul li a {
  text-decoration: none;
  background: var(--col_blue);
  color: white;
  border-radius: 15px;
  padding: 0 var(--half_margin);
  display: inline-block;
}

/* line 41, app/assets/stylesheets/sompocare/scss/breadcrumb.scss */
#sompo #breadcrumb ul li:first-child a:before {
  padding-right: 5px;
  font-size: 1.1em;
  font-weight: normal;
}

/* line 47, app/assets/stylesheets/sompocare/scss/breadcrumb.scss */
#sompo #breadcrumb ul li a:hover {
  text-decoration: none;
  background: var(--col_usuzumi);
  transition: .3s;
}

/* line 56, app/assets/stylesheets/sompocare/scss/breadcrumb.scss */
#sompo .archive #breadcrumb {
  padding: 0;
  background: transparent;
}

/* PAGENATION
---------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/sompocare/scss/pagination.scss */
#sompo nav.pagination {
  gap: 0.2rem;
  display: flex;
  margin: 2rem auto 0 !important;
  justify-content: center;
  flex-wrap: wrap;
}

/* line 12, app/assets/stylesheets/sompocare/scss/pagination.scss */
#sompo nav.pagination span.page a, #sompo nav.pagination span.first a, #sompo nav.pagination span.prev a, #sompo nav.pagination span.next a, #sompo nav.pagination span.last a {
  color: var(--main_black);
  background: var(--col_whitesmoke);
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

/* line 18, app/assets/stylesheets/sompocare/scss/pagination.scss */
#sompo nav.pagination span.page a:hover, #sompo nav.pagination span.first a:hover, #sompo nav.pagination span.prev a:hover, #sompo nav.pagination span.next a:hover, #sompo nav.pagination span.last a:hover {
  background: var(--col_yellow);
  transition: .3s;
}

/* line 24, app/assets/stylesheets/sompocare/scss/pagination.scss */
#sompo nav.pagination span.current {
  background: var(--col_yellow);
}

/* line 27, app/assets/stylesheets/sompocare/scss/pagination.scss */
#sompo nav.pagination span.current, #sompo nav.pagination span.page a, #sompo nav.pagination span.first a, #sompo nav.pagination span.prev a, #sompo nav.pagination span.next a, #sompo nav.pagination span.last a {
  padding: var(--half_margin) 1rem;
  border-radius: .2em;
  display: inline-block;
  margin-bottom: .2rem;
}

/* line 33, app/assets/stylesheets/sompocare/scss/pagination.scss */
#sompo nav.pagination span.disabled {
  color: var(--main_black);
}

/* line 36, app/assets/stylesheets/sompocare/scss/pagination.scss */
#sompo nav.pagination span.gap {
  background-color: transparent;
}

/* BUTTON
---------------------------------------------------------------------------- */
/* line 3, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo {
  /* main btn */
  /* send btn */
  /* .search_list_detail_ctr { */
  /* } */
  /* detail tbl maplink { */
  /* movie */
}

/* line 5, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .send_btn,
#sompo .main_btn {
  padding: 1rem 2rem;
  border-radius: 7px;
  transition: .3s;
}

/* line 11, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .send_btn.arrow:after, #sompo .send_btn.mail:before,
#sompo .main_btn.arrow:after,
#sompo .main_btn.mail:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* line 19, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .main_btn {
  color: var(--main_black);
  background: var(--col_yellow);
  border: 1px solid var(--col_yellow);
  /*
        &:focus {
            box-shadow: 0px 0px 0px 5px rgba(20, 87, 244, 0.37), 0px 0px 0px 10px rgba(20, 87, 244, 0.38);
            outline: none;
        }*/
}

/* line 23, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .main_btn.arrow:after {
  content: "\f101";
  margin-left: var(--half_margin);
}

/* line 27, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .main_btn:hover {
  color: orange;
  border: 1px solid var(--col_yellow);
  background: var(--col_light_yellow);
}

/* line 41, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .send_btn {
  min-width: 200px;
  color: white;
  background: var(--col_green);
}

/* line 45, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .send_btn.mail:before {
  content: "\f1d8";
  margin-right: var(--half_margin);
}

/* line 49, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .send_btn:hover {
  background: var(--col_light_green);
}

/* line 52, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .send_btn:focus {
  box-shadow: 0px 0px 0px 5px rgba(20, 87, 244, 0.37), 0px 0px 0px 10px rgba(20, 87, 244, 0.38);
  outline: none;
}

/* line 58, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .job_search_btn {
  /* search btn */
}

/* line 59, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .job_search_btn a, #sompo .job_search_btn button {
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  padding: var(--half_margin) 3rem var(--half_margin) 1rem;
  color: var(--main_black);
  transition: 0.3s ease-in-out;
  border: 2px solid var(--col_yellow);
  background: var(--col_yellow);
}

/* line 72, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .job_search_btn a i, #sompo .job_search_btn button i {
  margin-right: var(--half_margin);
}

/* line 75, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .job_search_btn a:after, #sompo .job_search_btn button:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* line 91, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .job_search_btn a:hover, #sompo .job_search_btn button:hover {
  color: orange;
  background: var(--col_light_yellow);
}

/* line 95, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .job_search_btn a:hover:after, #sompo .job_search_btn button:hover:after {
  right: 1.8rem;
}

/* line 104, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .search_list_btn_ctr, #sompo .search_list_btn_ctr .mail_btn, #sompo .search_list_btn_ctr .tel_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--half_margin);
}

@media only screen and (max-width: 800px) {
  /* line 113, app/assets/stylesheets/sompocare/scss/button.scss */
  #sompo .search_list_btn_ctr {
    flex-flow: column;
  }
}

/* line 120, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .search_list_btn_ctr .mail_btn, #sompo .search_list_btn_ctr .tel_btn {
  min-width: 280px;
  min-height: 3.5rem;
  border-radius: 8px;
}

/* line 125, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .search_list_btn_ctr .mail_btn {
  color: white;
  border-bottom: 5px solid var(--col_tomatored_dark);
  background: var(--col_tomatored);
  /* flex-flow: column;
                gap: 0; 
                span {
                    font-size: 90%;
                }*/
}

/* line 134, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .search_list_btn_ctr .mail_btn:hover {
  border-bottom: 1px solid var(--col_jnr_white);
  transition: .2s;
}

/* line 139, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .search_list_btn_ctr .tel_btn {
  position: relative;
  padding-left: 2.5rem;
  border: 1px solid var(--col_jnr_white);
  border-bottom: 5px solid var(--col_jnr_white);
  background: white;
}

/* line 146, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .search_list_btn_ctr .tel_btn .num {
  font-weight: 600;
  font-size: 130%;
}

@media only screen and (max-width: 480px) {
  /* line 146, app/assets/stylesheets/sompocare/scss/button.scss */
  #sompo .search_list_btn_ctr .tel_btn .num {
    color: var(--col_tomatored) !important;
  }
}

/* line 154, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .search_list_btn_ctr .tel_btn .ribbon {
  color: white;
  text-align: center;
  font-size: 83%;
  display: inline-block;
  position: absolute;
  left: .8rem;
  top: -1px;
  margin: 0;
  width: 40px;
  padding: .8rem 0rem 0.7rem 0.2rem;
  z-index: 1;
  background: var(--col_tomatored);
}

/* line 168, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .search_list_btn_ctr .tel_btn .ribbon:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 20px solid var(--col_tomatored);
  border-right: 20px solid var(--col_tomatored);
  border-bottom: 10px solid transparent;
}

@media only screen and (max-width: 600px) {
  /* line 183, app/assets/stylesheets/sompocare/scss/button.scss */
  #sompo .search_list_btn_ctr .mail_btn, #sompo .search_list_btn_ctr .tel_btn {
    width: fit-content;
    min-height: 3rem;
    /* padding: 0 2rem; */
  }
  /* line 188, app/assets/stylesheets/sompocare/scss/button.scss */
  #sompo .search_list_btn_ctr .mail_btn {
    font-weight: 600;
    /* flex-flow: column;
                    gap: 0; */
  }
  /* line 193, app/assets/stylesheets/sompocare/scss/button.scss */
  #sompo .search_list_btn_ctr .tel_btn {
    color: var(--col_tomatored);
    /* font-size: 140%;
                    padding-left: auto;
                    .num, .ribbon {
                        display: none;
                    }*/
  }
}

/* line 206, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo table .maplink {
  display: block;
}

/* line 210, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .maplink {
  color: var(--main_black);
  text-decoration: underline;
  border-radius: 5px;
  padding: .1rem 1rem .3rem;
  border: 1px solid var(--col_yellow);
  background: var(--col_light_yellow);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/* line 222, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .maplink i {
  margin-right: var(--half_margin);
}

/* line 226, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .maplink:hover {
  background: var(--col_yellow);
}

/* line 232, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .movie-btn-ctr {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 1rem 0;
}

/* line 239, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .movie-btn-ctr button, #sompo .movie-btn-ctr a {
  max-width: 250px;
  width: 100%;
  color: white;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: .5rem 1rem .5rem 1rem;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  border-radius: 50px;
  z-index: 0;
  overflow: hidden;
  background: #37a34a;
}

/* line 257, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .movie-btn-ctr button:before, #sompo .movie-btn-ctr a:before {
  line-height: 1;
  position: absolute;
  left: 1rem;
  padding: 4px;
}

/* line 264, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .movie-btn-ctr button:after, #sompo .movie-btn-ctr a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  transition: .3s;
  left: 0;
  background: #13bf72;
}

/* line 276, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .movie-btn-ctr button:hover:after, #sompo .movie-btn-ctr a:hover:after {
  width: 100%;
  z-index: -1;
}

/* line 281, app/assets/stylesheets/sompocare/scss/button.scss */
#sompo .movie-btn-ctr .movie {
  /* icon */
  /*			&:before {
				content:'\e037';
				font-family: "Material Icons";
			}*/
}

/* DISTANCE
---------------------------------------------------------------------------- */
/* line 5, app/assets/stylesheets/sompocare/scss/distance.scss */
#sompo .distance_ctr {
  display: flex;
  flex-flow: column;
  gap: var(--half_margin);
}

@media only screen and (max-width: 480px) {
  /* line 5, app/assets/stylesheets/sompocare/scss/distance.scss */
  #sompo .distance_ctr {
    width: 100%;
    margin: 0 auto;
    align-items: center;
  }
}

/* line 16, app/assets/stylesheets/sompocare/scss/distance.scss */
#sompo .distance_ctr .distance_heading {
  margin-right: auto;
  color: white;
  position: relative;
  display: inline-block;
  text-align: center;
  background-color: orange;
  border-radius: 2rem;
  margin-bottom: 0;
  padding: .3rem 1rem;
}

@media only screen and (max-width: 480px) {
  /* line 16, app/assets/stylesheets/sompocare/scss/distance.scss */
  #sompo .distance_ctr .distance_heading {
    margin-right: initial;
  }
}

/* line 31, app/assets/stylesheets/sompocare/scss/distance.scss */
#sompo .distance_ctr .distance_heading:before {
  content: '';
  position: absolute;
  display: block;
  z-index: 1;
  border-style: solid;
  border-color: orange transparent;
  border-width: 10px 10px 0 10px;
  bottom: -5px;
  left: 50%;
  margin-left: -10px;
}

/* line 47, app/assets/stylesheets/sompocare/scss/distance.scss */
#sompo .distance_ctr .root_ctr {
  width: fit-content;
}

/* line 49, app/assets/stylesheets/sompocare/scss/distance.scss */
#sompo .distance_ctr .root_ctr a {
  padding: .4rem 3rem .4rem .4rem;
}

/* line 53, app/assets/stylesheets/sompocare/scss/distance.scss */
#sompo .distance_ctr .ul_root_ctr {
  width: 100%;
}

/* line 55, app/assets/stylesheets/sompocare/scss/distance.scss */
#sompo .distance_ctr .ul_root_ctr a {
  padding: .4rem;
}

/* line 61, app/assets/stylesheets/sompocare/scss/distance.scss */
#sompo .distance_ctr .root_ctr,
#sompo .distance_ctr .ul_root_ctr {
  padding: 3px;
  display: flex;
  flex-wrap: nowrap;
  border-radius: 0.5rem;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border: 1px dashed var(--col_yellow);
  margin-bottom: var(--half_margin);
}

@media only screen and (max-width: 480px) {
  /* line 61, app/assets/stylesheets/sompocare/scss/distance.scss */
  #sompo .distance_ctr .root_ctr,
#sompo .distance_ctr .ul_root_ctr {
    margin-bottom: 1rem;
    flex-flow: column;
    font-size: 14px;
  }
}

@media only screen and (max-width: 380px) {
  /* line 61, app/assets/stylesheets/sompocare/scss/distance.scss */
  #sompo .distance_ctr .root_ctr,
#sompo .distance_ctr .ul_root_ctr {
    font-size: 13px;
    letter-spacing: 0;
  }
}

/* line 83, app/assets/stylesheets/sompocare/scss/distance.scss */
#sompo .distance_ctr .root_ctr li,
#sompo .distance_ctr .ul_root_ctr li {
  width: 50%;
}

@media only screen and (max-width: 480px) {
  /* line 83, app/assets/stylesheets/sompocare/scss/distance.scss */
  #sompo .distance_ctr .root_ctr li,
#sompo .distance_ctr .ul_root_ctr li {
    width: 100%;
  }
}

/* line 89, app/assets/stylesheets/sompocare/scss/distance.scss */
#sompo .distance_ctr .root_ctr a,
#sompo .distance_ctr .ul_root_ctr a {
  display: block;
  color: var(--main_black);
  position: relative;
  width: 100%;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none !important;
  border: 2px solid var(--col_yellow);
  background: #fff367;
}

/* line 100, app/assets/stylesheets/sompocare/scss/distance.scss */
#sompo .distance_ctr .root_ctr a:hover,
#sompo .distance_ctr .ul_root_ctr a:hover {
  transition: 0.3s;
  background: white;
}

/* line 105, app/assets/stylesheets/sompocare/scss/distance.scss */
#sompo .distance_ctr .root_ctr a:after,
#sompo .distance_ctr .ul_root_ctr a:after {
  /* arrow */
  font-size: 130%;
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 4px;
  right: var(--half_margin);
}

/* line 115, app/assets/stylesheets/sompocare/scss/distance.scss */
#sompo .distance_ctr .root_ctr a img,
#sompo .distance_ctr .ul_root_ctr a img {
  vertical-align: middle;
  margin: 0 var(--half_margin);
}

/* line 119, app/assets/stylesheets/sompocare/scss/distance.scss */
#sompo .distance_ctr .root_ctr a .ico_car,
#sompo .distance_ctr .ul_root_ctr a .ico_car {
  position: relative;
  text-align: center;
  color: #FFF;
  font-size: 90%;
  font-weight: bold;
  background: #bf2c23;
  border-radius: 1rem;
  padding: 0.2rem var(--half_margin) 0.3rem;
}

@media only screen and (max-width: 480px) {
  /* line 119, app/assets/stylesheets/sompocare/scss/distance.scss */
  #sompo .distance_ctr .root_ctr a .ico_car,
#sompo .distance_ctr .ul_root_ctr a .ico_car {
    margin-left: -1.5rem;
  }
}

/* line 133, app/assets/stylesheets/sompocare/scss/distance.scss */
#sompo .distance_ctr .root_ctr a .ico_car:before,
#sompo .distance_ctr .ul_root_ctr a .ico_car:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  margin-top: -5px;
  border: 5px solid transparent;
  border-left: 5px solid #bf2c23;
  z-index: 0;
}

@media only screen and (max-width: 890px) {
  /* line 3, app/assets/stylesheets/sompocare/scss/distance.scss */
  #sompo {
    /* .distance_ctr {
            align-items: center;
        }*/
  }
}

/* COMPANY
---------------------------------------------------------------------------- */
/* line 6, app/assets/stylesheets/sompocare/scss/company.scss */
#sompo .contents_ctr.company .contents_inner p {
  width: fit-content;
  margin: 0 auto 2rem;
}

/* line 11, app/assets/stylesheets/sompocare/scss/company.scss */
#sompo .contents_ctr.company .contents_inner .tbl_base {
  width: 100%;
}

/* NEWS
---------------------------------------------------------------------------- */
/* index news */
/* line 5, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_news_ctr {
  background: url(/assets/sompocare/contents_bg-c20b1cff9221fe4d4cc713713436367eb0c962e2c2ae6ad4c995abe8b5241490.png) center top no-repeat;
}

/* line 12, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_scroll_ctr,
#sompo .top_info_ctr .news_scroll_ctr,
#sompo .top_news_ctr .info_scroll_ctr,
#sompo .top_news_ctr .news_scroll_ctr {
  border: 7px solid white;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  border-radius: 1rem;
  height: 20rem;
  overflow: auto;
  max-width: 640px;
}

/* line 21, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_scroll_ctr::-webkit-scrollbar,
#sompo .top_info_ctr .news_scroll_ctr::-webkit-scrollbar,
#sompo .top_news_ctr .info_scroll_ctr::-webkit-scrollbar,
#sompo .top_news_ctr .news_scroll_ctr::-webkit-scrollbar {
  width: 14px;
}

/* line 25, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_scroll_ctr::-webkit-scrollbar-track,
#sompo .top_info_ctr .news_scroll_ctr::-webkit-scrollbar-track,
#sompo .top_news_ctr .info_scroll_ctr::-webkit-scrollbar-track,
#sompo .top_news_ctr .news_scroll_ctr::-webkit-scrollbar-track {
  background-color: var(--col_whitesmoke);
  border-radius: 10px;
}

/* line 30, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_scroll_ctr::-webkit-scrollbar-thumb,
#sompo .top_info_ctr .news_scroll_ctr::-webkit-scrollbar-thumb,
#sompo .top_news_ctr .info_scroll_ctr::-webkit-scrollbar-thumb,
#sompo .top_news_ctr .news_scroll_ctr::-webkit-scrollbar-thumb {
  background-color: var(--main_black);
  border-radius: 10px;
}

/* line 34, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_scroll_ctr .info_inner,
#sompo .top_info_ctr .info_scroll_ctr .news_inner,
#sompo .top_info_ctr .news_scroll_ctr .info_inner,
#sompo .top_info_ctr .news_scroll_ctr .news_inner,
#sompo .top_news_ctr .info_scroll_ctr .info_inner,
#sompo .top_news_ctr .info_scroll_ctr .news_inner,
#sompo .top_news_ctr .news_scroll_ctr .info_inner,
#sompo .top_news_ctr .news_scroll_ctr .news_inner {
  border-bottom: 3px solid var(--col_whitesmoke);
}

/* line 38, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_scroll_ctr .info_inner:last-child,
#sompo .top_info_ctr .info_scroll_ctr .news_inner:last-child,
#sompo .top_info_ctr .news_scroll_ctr .info_inner:last-child,
#sompo .top_info_ctr .news_scroll_ctr .news_inner:last-child,
#sompo .top_news_ctr .info_scroll_ctr .info_inner:last-child,
#sompo .top_news_ctr .info_scroll_ctr .news_inner:last-child,
#sompo .top_news_ctr .news_scroll_ctr .info_inner:last-child,
#sompo .top_news_ctr .news_scroll_ctr .news_inner:last-child {
  border-bottom: 0;
}

/* line 44, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_scroll_ctr .info_inner .info_text p,
#sompo .top_info_ctr .info_scroll_ctr .info_inner .news_text p,
#sompo .top_info_ctr .info_scroll_ctr .news_inner .info_text p,
#sompo .top_info_ctr .info_scroll_ctr .news_inner .news_text p,
#sompo .top_info_ctr .news_scroll_ctr .info_inner .info_text p,
#sompo .top_info_ctr .news_scroll_ctr .info_inner .news_text p,
#sompo .top_info_ctr .news_scroll_ctr .news_inner .info_text p,
#sompo .top_info_ctr .news_scroll_ctr .news_inner .news_text p,
#sompo .top_news_ctr .info_scroll_ctr .info_inner .info_text p,
#sompo .top_news_ctr .info_scroll_ctr .info_inner .news_text p,
#sompo .top_news_ctr .info_scroll_ctr .news_inner .info_text p,
#sompo .top_news_ctr .info_scroll_ctr .news_inner .news_text p,
#sompo .top_news_ctr .news_scroll_ctr .info_inner .info_text p,
#sompo .top_news_ctr .news_scroll_ctr .info_inner .news_text p,
#sompo .top_news_ctr .news_scroll_ctr .news_inner .info_text p,
#sompo .top_news_ctr .news_scroll_ctr .news_inner .news_text p {
  /* color: var(--col_blue); */
  font-size: 90%;
}

/* line 53, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr,
#sompo .top_news_ctr,
#sompo .info_ctr,
#sompo .info_list_ctr,
#sompo .news_list_ctr {
  width: 100%;
  padding: 1rem;
}

/* line 61, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_scroll_ctr,
#sompo .top_info_ctr .news_scroll_ctr,
#sompo .top_news_ctr .info_scroll_ctr,
#sompo .top_news_ctr .news_scroll_ctr,
#sompo .info_ctr .info_scroll_ctr,
#sompo .info_ctr .news_scroll_ctr,
#sompo .info_list_ctr .info_scroll_ctr,
#sompo .info_list_ctr .news_scroll_ctr,
#sompo .news_list_ctr .info_scroll_ctr,
#sompo .news_list_ctr .news_scroll_ctr {
  width: 100%;
  display: flex;
  flex-flow: column;
  margin: var(--main_mb_center);
  background: white;
}

/* line 69, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_scroll_ctr::-webkit-scrollbar,
#sompo .top_info_ctr .news_scroll_ctr::-webkit-scrollbar,
#sompo .top_news_ctr .info_scroll_ctr::-webkit-scrollbar,
#sompo .top_news_ctr .news_scroll_ctr::-webkit-scrollbar,
#sompo .info_ctr .info_scroll_ctr::-webkit-scrollbar,
#sompo .info_ctr .news_scroll_ctr::-webkit-scrollbar,
#sompo .info_list_ctr .info_scroll_ctr::-webkit-scrollbar,
#sompo .info_list_ctr .news_scroll_ctr::-webkit-scrollbar,
#sompo .news_list_ctr .info_scroll_ctr::-webkit-scrollbar,
#sompo .news_list_ctr .news_scroll_ctr::-webkit-scrollbar {
  width: 14px;
}

/* line 73, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_scroll_ctr::-webkit-scrollbar-track,
#sompo .top_info_ctr .news_scroll_ctr::-webkit-scrollbar-track,
#sompo .top_news_ctr .info_scroll_ctr::-webkit-scrollbar-track,
#sompo .top_news_ctr .news_scroll_ctr::-webkit-scrollbar-track,
#sompo .info_ctr .info_scroll_ctr::-webkit-scrollbar-track,
#sompo .info_ctr .news_scroll_ctr::-webkit-scrollbar-track,
#sompo .info_list_ctr .info_scroll_ctr::-webkit-scrollbar-track,
#sompo .info_list_ctr .news_scroll_ctr::-webkit-scrollbar-track,
#sompo .news_list_ctr .info_scroll_ctr::-webkit-scrollbar-track,
#sompo .news_list_ctr .news_scroll_ctr::-webkit-scrollbar-track {
  background-color: var(--col_whitesmoke);
  border-radius: 10px;
}

/* line 78, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_scroll_ctr::-webkit-scrollbar-thumb,
#sompo .top_info_ctr .news_scroll_ctr::-webkit-scrollbar-thumb,
#sompo .top_news_ctr .info_scroll_ctr::-webkit-scrollbar-thumb,
#sompo .top_news_ctr .news_scroll_ctr::-webkit-scrollbar-thumb,
#sompo .info_ctr .info_scroll_ctr::-webkit-scrollbar-thumb,
#sompo .info_ctr .news_scroll_ctr::-webkit-scrollbar-thumb,
#sompo .info_list_ctr .info_scroll_ctr::-webkit-scrollbar-thumb,
#sompo .info_list_ctr .news_scroll_ctr::-webkit-scrollbar-thumb,
#sompo .news_list_ctr .info_scroll_ctr::-webkit-scrollbar-thumb,
#sompo .news_list_ctr .news_scroll_ctr::-webkit-scrollbar-thumb {
  background-color: var(--main_black);
  border-radius: 10px;
}

/* line 84, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_inner,
#sompo .top_info_ctr .news_inner,
#sompo .top_news_ctr .info_inner,
#sompo .top_news_ctr .news_inner,
#sompo .info_ctr .info_inner,
#sompo .info_ctr .news_inner,
#sompo .info_list_ctr .info_inner,
#sompo .info_list_ctr .news_inner,
#sompo .news_list_ctr .info_inner,
#sompo .news_list_ctr .news_inner {
  font-size: 94%;
  padding: 1rem;
  /* icon container */
}

/* line 91, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_inner .info_text h3, #sompo .top_info_ctr .info_inner .info_text p,
#sompo .top_info_ctr .info_inner .news_text h3,
#sompo .top_info_ctr .info_inner .news_text p,
#sompo .top_info_ctr .news_inner .info_text h3,
#sompo .top_info_ctr .news_inner .info_text p,
#sompo .top_info_ctr .news_inner .news_text h3,
#sompo .top_info_ctr .news_inner .news_text p,
#sompo .top_news_ctr .info_inner .info_text h3,
#sompo .top_news_ctr .info_inner .info_text p,
#sompo .top_news_ctr .info_inner .news_text h3,
#sompo .top_news_ctr .info_inner .news_text p,
#sompo .top_news_ctr .news_inner .info_text h3,
#sompo .top_news_ctr .news_inner .info_text p,
#sompo .top_news_ctr .news_inner .news_text h3,
#sompo .top_news_ctr .news_inner .news_text p,
#sompo .info_ctr .info_inner .info_text h3,
#sompo .info_ctr .info_inner .info_text p,
#sompo .info_ctr .info_inner .news_text h3,
#sompo .info_ctr .info_inner .news_text p,
#sompo .info_ctr .news_inner .info_text h3,
#sompo .info_ctr .news_inner .info_text p,
#sompo .info_ctr .news_inner .news_text h3,
#sompo .info_ctr .news_inner .news_text p,
#sompo .info_list_ctr .info_inner .info_text h3,
#sompo .info_list_ctr .info_inner .info_text p,
#sompo .info_list_ctr .info_inner .news_text h3,
#sompo .info_list_ctr .info_inner .news_text p,
#sompo .info_list_ctr .news_inner .info_text h3,
#sompo .info_list_ctr .news_inner .info_text p,
#sompo .info_list_ctr .news_inner .news_text h3,
#sompo .info_list_ctr .news_inner .news_text p,
#sompo .news_list_ctr .info_inner .info_text h3,
#sompo .news_list_ctr .info_inner .info_text p,
#sompo .news_list_ctr .info_inner .news_text h3,
#sompo .news_list_ctr .info_inner .news_text p,
#sompo .news_list_ctr .news_inner .info_text h3,
#sompo .news_list_ctr .news_inner .info_text p,
#sompo .news_list_ctr .news_inner .news_text h3,
#sompo .news_list_ctr .news_inner .news_text p {
  padding: 0 var(--half_margin);
}

/* line 94, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_inner .info_text h3,
#sompo .top_info_ctr .info_inner .news_text h3,
#sompo .top_info_ctr .news_inner .info_text h3,
#sompo .top_info_ctr .news_inner .news_text h3,
#sompo .top_news_ctr .info_inner .info_text h3,
#sompo .top_news_ctr .info_inner .news_text h3,
#sompo .top_news_ctr .news_inner .info_text h3,
#sompo .top_news_ctr .news_inner .news_text h3,
#sompo .info_ctr .info_inner .info_text h3,
#sompo .info_ctr .info_inner .news_text h3,
#sompo .info_ctr .news_inner .info_text h3,
#sompo .info_ctr .news_inner .news_text h3,
#sompo .info_list_ctr .info_inner .info_text h3,
#sompo .info_list_ctr .info_inner .news_text h3,
#sompo .info_list_ctr .news_inner .info_text h3,
#sompo .info_list_ctr .news_inner .news_text h3,
#sompo .news_list_ctr .info_inner .info_text h3,
#sompo .news_list_ctr .info_inner .news_text h3,
#sompo .news_list_ctr .news_inner .info_text h3,
#sompo .news_list_ctr .news_inner .news_text h3 {
  font-size: 100%;
  margin-bottom: var(--half_margin);
}

/* line 98, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_inner .info_text a,
#sompo .top_info_ctr .info_inner .news_text a,
#sompo .top_info_ctr .news_inner .info_text a,
#sompo .top_info_ctr .news_inner .news_text a,
#sompo .top_news_ctr .info_inner .info_text a,
#sompo .top_news_ctr .info_inner .news_text a,
#sompo .top_news_ctr .news_inner .info_text a,
#sompo .top_news_ctr .news_inner .news_text a,
#sompo .info_ctr .info_inner .info_text a,
#sompo .info_ctr .info_inner .news_text a,
#sompo .info_ctr .news_inner .info_text a,
#sompo .info_ctr .news_inner .news_text a,
#sompo .info_list_ctr .info_inner .info_text a,
#sompo .info_list_ctr .info_inner .news_text a,
#sompo .info_list_ctr .news_inner .info_text a,
#sompo .info_list_ctr .news_inner .news_text a,
#sompo .news_list_ctr .info_inner .info_text a,
#sompo .news_list_ctr .info_inner .news_text a,
#sompo .news_list_ctr .news_inner .info_text a,
#sompo .news_list_ctr .news_inner .news_text a {
  display: block;
  color: var(--main_black);
  background-color: var(--col_light_yellow);
  padding: 0.3rem var(--half_margin);
  border-radius: 1.5rem;
}

/* line 106, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_inner .info_text a:before,
#sompo .top_info_ctr .info_inner .news_text a:before,
#sompo .top_info_ctr .news_inner .info_text a:before,
#sompo .top_info_ctr .news_inner .news_text a:before,
#sompo .top_news_ctr .info_inner .info_text a:before,
#sompo .top_news_ctr .info_inner .news_text a:before,
#sompo .top_news_ctr .news_inner .info_text a:before,
#sompo .top_news_ctr .news_inner .news_text a:before,
#sompo .info_ctr .info_inner .info_text a:before,
#sompo .info_ctr .info_inner .news_text a:before,
#sompo .info_ctr .news_inner .info_text a:before,
#sompo .info_ctr .news_inner .news_text a:before,
#sompo .info_list_ctr .info_inner .info_text a:before,
#sompo .info_list_ctr .info_inner .news_text a:before,
#sompo .info_list_ctr .news_inner .info_text a:before,
#sompo .info_list_ctr .news_inner .news_text a:before,
#sompo .news_list_ctr .info_inner .info_text a:before,
#sompo .news_list_ctr .info_inner .news_text a:before,
#sompo .news_list_ctr .news_inner .info_text a:before,
#sompo .news_list_ctr .news_inner .news_text a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f138";
  margin-right: var(--half_margin);
}

/* line 113, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_inner .info_text a:hover,
#sompo .top_info_ctr .info_inner .news_text a:hover,
#sompo .top_info_ctr .news_inner .info_text a:hover,
#sompo .top_info_ctr .news_inner .news_text a:hover,
#sompo .top_news_ctr .info_inner .info_text a:hover,
#sompo .top_news_ctr .info_inner .news_text a:hover,
#sompo .top_news_ctr .news_inner .info_text a:hover,
#sompo .top_news_ctr .news_inner .news_text a:hover,
#sompo .info_ctr .info_inner .info_text a:hover,
#sompo .info_ctr .info_inner .news_text a:hover,
#sompo .info_ctr .news_inner .info_text a:hover,
#sompo .info_ctr .news_inner .news_text a:hover,
#sompo .info_list_ctr .info_inner .info_text a:hover,
#sompo .info_list_ctr .info_inner .news_text a:hover,
#sompo .info_list_ctr .news_inner .info_text a:hover,
#sompo .info_list_ctr .news_inner .news_text a:hover,
#sompo .news_list_ctr .info_inner .info_text a:hover,
#sompo .news_list_ctr .info_inner .news_text a:hover,
#sompo .news_list_ctr .news_inner .info_text a:hover,
#sompo .news_list_ctr .news_inner .news_text a:hover {
  transition: .3s;
  background: var(--col_yellow);
}

/* line 122, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_inner .info_icon_ctr,
#sompo .top_info_ctr .info_inner .news_icon_ctr,
#sompo .top_info_ctr .news_inner .info_icon_ctr,
#sompo .top_info_ctr .news_inner .news_icon_ctr,
#sompo .top_news_ctr .info_inner .info_icon_ctr,
#sompo .top_news_ctr .info_inner .news_icon_ctr,
#sompo .top_news_ctr .news_inner .info_icon_ctr,
#sompo .top_news_ctr .news_inner .news_icon_ctr,
#sompo .info_ctr .info_inner .info_icon_ctr,
#sompo .info_ctr .info_inner .news_icon_ctr,
#sompo .info_ctr .news_inner .info_icon_ctr,
#sompo .info_ctr .news_inner .news_icon_ctr,
#sompo .info_list_ctr .info_inner .info_icon_ctr,
#sompo .info_list_ctr .info_inner .news_icon_ctr,
#sompo .info_list_ctr .news_inner .info_icon_ctr,
#sompo .info_list_ctr .news_inner .news_icon_ctr,
#sompo .news_list_ctr .info_inner .info_icon_ctr,
#sompo .news_list_ctr .info_inner .news_icon_ctr,
#sompo .news_list_ctr .news_inner .info_icon_ctr,
#sompo .news_list_ctr .news_inner .news_icon_ctr {
  font-size: var(--small_font_size);
  display: flex;
  flex-wrap: wrap;
  gap: var(--half_margin) var(--half_margin);
  margin-bottom: var(--half_margin);
}

/* line 132, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_inner .info_icon_ctr .info .date,
#sompo .top_info_ctr .info_inner .news_icon_ctr .info .date,
#sompo .top_info_ctr .news_inner .info_icon_ctr .info .date,
#sompo .top_info_ctr .news_inner .news_icon_ctr .info .date,
#sompo .top_news_ctr .info_inner .info_icon_ctr .info .date,
#sompo .top_news_ctr .info_inner .news_icon_ctr .info .date,
#sompo .top_news_ctr .news_inner .info_icon_ctr .info .date,
#sompo .top_news_ctr .news_inner .news_icon_ctr .info .date,
#sompo .info_ctr .info_inner .info_icon_ctr .info .date,
#sompo .info_ctr .info_inner .news_icon_ctr .info .date,
#sompo .info_ctr .news_inner .info_icon_ctr .info .date,
#sompo .info_ctr .news_inner .news_icon_ctr .info .date,
#sompo .info_list_ctr .info_inner .info_icon_ctr .info .date,
#sompo .info_list_ctr .info_inner .news_icon_ctr .info .date,
#sompo .info_list_ctr .news_inner .info_icon_ctr .info .date,
#sompo .info_list_ctr .news_inner .news_icon_ctr .info .date,
#sompo .news_list_ctr .info_inner .info_icon_ctr .info .date,
#sompo .news_list_ctr .info_inner .news_icon_ctr .info .date,
#sompo .news_list_ctr .news_inner .info_icon_ctr .info .date,
#sompo .news_list_ctr .news_inner .news_icon_ctr .info .date {
  color: var(--main_black);
  background: var(--col_whitesmoke);
}

/* line 137, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_inner .info_icon_ctr .info .ico_red,
#sompo .top_info_ctr .info_inner .news_icon_ctr .info .ico_red,
#sompo .top_info_ctr .news_inner .info_icon_ctr .info .ico_red,
#sompo .top_info_ctr .news_inner .news_icon_ctr .info .ico_red,
#sompo .top_news_ctr .info_inner .info_icon_ctr .info .ico_red,
#sompo .top_news_ctr .info_inner .news_icon_ctr .info .ico_red,
#sompo .top_news_ctr .news_inner .info_icon_ctr .info .ico_red,
#sompo .top_news_ctr .news_inner .news_icon_ctr .info .ico_red,
#sompo .info_ctr .info_inner .info_icon_ctr .info .ico_red,
#sompo .info_ctr .info_inner .news_icon_ctr .info .ico_red,
#sompo .info_ctr .news_inner .info_icon_ctr .info .ico_red,
#sompo .info_ctr .news_inner .news_icon_ctr .info .ico_red,
#sompo .info_list_ctr .info_inner .info_icon_ctr .info .ico_red,
#sompo .info_list_ctr .info_inner .news_icon_ctr .info .ico_red,
#sompo .info_list_ctr .news_inner .info_icon_ctr .info .ico_red,
#sompo .info_list_ctr .news_inner .news_icon_ctr .info .ico_red,
#sompo .news_list_ctr .info_inner .info_icon_ctr .info .ico_red,
#sompo .news_list_ctr .info_inner .news_icon_ctr .info .ico_red,
#sompo .news_list_ctr .news_inner .info_icon_ctr .info .ico_red,
#sompo .news_list_ctr .news_inner .news_icon_ctr .info .ico_red {
  color: white;
  background-color: var(--col_tomatored);
}

/* line 141, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_inner .info_icon_ctr .info .ico_blue,
#sompo .top_info_ctr .info_inner .news_icon_ctr .info .ico_blue,
#sompo .top_info_ctr .news_inner .info_icon_ctr .info .ico_blue,
#sompo .top_info_ctr .news_inner .news_icon_ctr .info .ico_blue,
#sompo .top_news_ctr .info_inner .info_icon_ctr .info .ico_blue,
#sompo .top_news_ctr .info_inner .news_icon_ctr .info .ico_blue,
#sompo .top_news_ctr .news_inner .info_icon_ctr .info .ico_blue,
#sompo .top_news_ctr .news_inner .news_icon_ctr .info .ico_blue,
#sompo .info_ctr .info_inner .info_icon_ctr .info .ico_blue,
#sompo .info_ctr .info_inner .news_icon_ctr .info .ico_blue,
#sompo .info_ctr .news_inner .info_icon_ctr .info .ico_blue,
#sompo .info_ctr .news_inner .news_icon_ctr .info .ico_blue,
#sompo .info_list_ctr .info_inner .info_icon_ctr .info .ico_blue,
#sompo .info_list_ctr .info_inner .news_icon_ctr .info .ico_blue,
#sompo .info_list_ctr .news_inner .info_icon_ctr .info .ico_blue,
#sompo .info_list_ctr .news_inner .news_icon_ctr .info .ico_blue,
#sompo .news_list_ctr .info_inner .info_icon_ctr .info .ico_blue,
#sompo .news_list_ctr .info_inner .news_icon_ctr .info .ico_blue,
#sompo .news_list_ctr .news_inner .info_icon_ctr .info .ico_blue,
#sompo .news_list_ctr .news_inner .news_icon_ctr .info .ico_blue {
  color: white;
  background-color: var(--col_blue);
}

/* line 145, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_inner .info_icon_ctr .info .ico_orange,
#sompo .top_info_ctr .info_inner .news_icon_ctr .info .ico_orange,
#sompo .top_info_ctr .news_inner .info_icon_ctr .info .ico_orange,
#sompo .top_info_ctr .news_inner .news_icon_ctr .info .ico_orange,
#sompo .top_news_ctr .info_inner .info_icon_ctr .info .ico_orange,
#sompo .top_news_ctr .info_inner .news_icon_ctr .info .ico_orange,
#sompo .top_news_ctr .news_inner .info_icon_ctr .info .ico_orange,
#sompo .top_news_ctr .news_inner .news_icon_ctr .info .ico_orange,
#sompo .info_ctr .info_inner .info_icon_ctr .info .ico_orange,
#sompo .info_ctr .info_inner .news_icon_ctr .info .ico_orange,
#sompo .info_ctr .news_inner .info_icon_ctr .info .ico_orange,
#sompo .info_ctr .news_inner .news_icon_ctr .info .ico_orange,
#sompo .info_list_ctr .info_inner .info_icon_ctr .info .ico_orange,
#sompo .info_list_ctr .info_inner .news_icon_ctr .info .ico_orange,
#sompo .info_list_ctr .news_inner .info_icon_ctr .info .ico_orange,
#sompo .info_list_ctr .news_inner .news_icon_ctr .info .ico_orange,
#sompo .news_list_ctr .info_inner .info_icon_ctr .info .ico_orange,
#sompo .news_list_ctr .info_inner .news_icon_ctr .info .ico_orange,
#sompo .news_list_ctr .news_inner .info_icon_ctr .info .ico_orange,
#sompo .news_list_ctr .news_inner .news_icon_ctr .info .ico_orange {
  color: white;
  background-color: orange;
}

/* line 149, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_inner .info_icon_ctr .info .ico_green,
#sompo .top_info_ctr .info_inner .news_icon_ctr .info .ico_green,
#sompo .top_info_ctr .news_inner .info_icon_ctr .info .ico_green,
#sompo .top_info_ctr .news_inner .news_icon_ctr .info .ico_green,
#sompo .top_news_ctr .info_inner .info_icon_ctr .info .ico_green,
#sompo .top_news_ctr .info_inner .news_icon_ctr .info .ico_green,
#sompo .top_news_ctr .news_inner .info_icon_ctr .info .ico_green,
#sompo .top_news_ctr .news_inner .news_icon_ctr .info .ico_green,
#sompo .info_ctr .info_inner .info_icon_ctr .info .ico_green,
#sompo .info_ctr .info_inner .news_icon_ctr .info .ico_green,
#sompo .info_ctr .news_inner .info_icon_ctr .info .ico_green,
#sompo .info_ctr .news_inner .news_icon_ctr .info .ico_green,
#sompo .info_list_ctr .info_inner .info_icon_ctr .info .ico_green,
#sompo .info_list_ctr .info_inner .news_icon_ctr .info .ico_green,
#sompo .info_list_ctr .news_inner .info_icon_ctr .info .ico_green,
#sompo .info_list_ctr .news_inner .news_icon_ctr .info .ico_green,
#sompo .news_list_ctr .info_inner .info_icon_ctr .info .ico_green,
#sompo .news_list_ctr .info_inner .news_icon_ctr .info .ico_green,
#sompo .news_list_ctr .news_inner .info_icon_ctr .info .ico_green,
#sompo .news_list_ctr .news_inner .news_icon_ctr .info .ico_green {
  color: white;
  background-color: var(--col_green);
}

/* line 156, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_inner .info_icon_ctr .category span,
#sompo .top_info_ctr .info_inner .news_icon_ctr .category span,
#sompo .top_info_ctr .news_inner .info_icon_ctr .category span,
#sompo .top_info_ctr .news_inner .news_icon_ctr .category span,
#sompo .top_news_ctr .info_inner .info_icon_ctr .category span,
#sompo .top_news_ctr .info_inner .news_icon_ctr .category span,
#sompo .top_news_ctr .news_inner .info_icon_ctr .category span,
#sompo .top_news_ctr .news_inner .news_icon_ctr .category span,
#sompo .info_ctr .info_inner .info_icon_ctr .category span,
#sompo .info_ctr .info_inner .news_icon_ctr .category span,
#sompo .info_ctr .news_inner .info_icon_ctr .category span,
#sompo .info_ctr .news_inner .news_icon_ctr .category span,
#sompo .info_list_ctr .info_inner .info_icon_ctr .category span,
#sompo .info_list_ctr .info_inner .news_icon_ctr .category span,
#sompo .info_list_ctr .news_inner .info_icon_ctr .category span,
#sompo .info_list_ctr .news_inner .news_icon_ctr .category span,
#sompo .news_list_ctr .info_inner .info_icon_ctr .category span,
#sompo .news_list_ctr .info_inner .news_icon_ctr .category span,
#sompo .news_list_ctr .news_inner .info_icon_ctr .category span,
#sompo .news_list_ctr .news_inner .news_icon_ctr .category span {
  border: 1px solid var(--col_blue);
  color: var(--col_blue);
}

/* line 162, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .top_info_ctr .info_inner .info_icon_ctr .category span,
#sompo .top_info_ctr .info_inner .info_icon_ctr .info .date,
#sompo .top_info_ctr .info_inner .info_icon_ctr .info .ico_red,
#sompo .top_info_ctr .info_inner .info_icon_ctr .info .ico_blue,
#sompo .top_info_ctr .info_inner .info_icon_ctr .info .ico_orange,
#sompo .top_info_ctr .info_inner .info_icon_ctr .info .ico_green,
#sompo .top_info_ctr .info_inner .news_icon_ctr .category span,
#sompo .top_info_ctr .info_inner .news_icon_ctr .info .date,
#sompo .top_info_ctr .info_inner .news_icon_ctr .info .ico_red,
#sompo .top_info_ctr .info_inner .news_icon_ctr .info .ico_blue,
#sompo .top_info_ctr .info_inner .news_icon_ctr .info .ico_orange,
#sompo .top_info_ctr .info_inner .news_icon_ctr .info .ico_green,
#sompo .top_info_ctr .news_inner .info_icon_ctr .category span,
#sompo .top_info_ctr .news_inner .info_icon_ctr .info .date,
#sompo .top_info_ctr .news_inner .info_icon_ctr .info .ico_red,
#sompo .top_info_ctr .news_inner .info_icon_ctr .info .ico_blue,
#sompo .top_info_ctr .news_inner .info_icon_ctr .info .ico_orange,
#sompo .top_info_ctr .news_inner .info_icon_ctr .info .ico_green,
#sompo .top_info_ctr .news_inner .news_icon_ctr .category span,
#sompo .top_info_ctr .news_inner .news_icon_ctr .info .date,
#sompo .top_info_ctr .news_inner .news_icon_ctr .info .ico_red,
#sompo .top_info_ctr .news_inner .news_icon_ctr .info .ico_blue,
#sompo .top_info_ctr .news_inner .news_icon_ctr .info .ico_orange,
#sompo .top_info_ctr .news_inner .news_icon_ctr .info .ico_green,
#sompo .top_news_ctr .info_inner .info_icon_ctr .category span,
#sompo .top_news_ctr .info_inner .info_icon_ctr .info .date,
#sompo .top_news_ctr .info_inner .info_icon_ctr .info .ico_red,
#sompo .top_news_ctr .info_inner .info_icon_ctr .info .ico_blue,
#sompo .top_news_ctr .info_inner .info_icon_ctr .info .ico_orange,
#sompo .top_news_ctr .info_inner .info_icon_ctr .info .ico_green,
#sompo .top_news_ctr .info_inner .news_icon_ctr .category span,
#sompo .top_news_ctr .info_inner .news_icon_ctr .info .date,
#sompo .top_news_ctr .info_inner .news_icon_ctr .info .ico_red,
#sompo .top_news_ctr .info_inner .news_icon_ctr .info .ico_blue,
#sompo .top_news_ctr .info_inner .news_icon_ctr .info .ico_orange,
#sompo .top_news_ctr .info_inner .news_icon_ctr .info .ico_green,
#sompo .top_news_ctr .news_inner .info_icon_ctr .category span,
#sompo .top_news_ctr .news_inner .info_icon_ctr .info .date,
#sompo .top_news_ctr .news_inner .info_icon_ctr .info .ico_red,
#sompo .top_news_ctr .news_inner .info_icon_ctr .info .ico_blue,
#sompo .top_news_ctr .news_inner .info_icon_ctr .info .ico_orange,
#sompo .top_news_ctr .news_inner .info_icon_ctr .info .ico_green,
#sompo .top_news_ctr .news_inner .news_icon_ctr .category span,
#sompo .top_news_ctr .news_inner .news_icon_ctr .info .date,
#sompo .top_news_ctr .news_inner .news_icon_ctr .info .ico_red,
#sompo .top_news_ctr .news_inner .news_icon_ctr .info .ico_blue,
#sompo .top_news_ctr .news_inner .news_icon_ctr .info .ico_orange,
#sompo .top_news_ctr .news_inner .news_icon_ctr .info .ico_green,
#sompo .info_ctr .info_inner .info_icon_ctr .category span,
#sompo .info_ctr .info_inner .info_icon_ctr .info .date,
#sompo .info_ctr .info_inner .info_icon_ctr .info .ico_red,
#sompo .info_ctr .info_inner .info_icon_ctr .info .ico_blue,
#sompo .info_ctr .info_inner .info_icon_ctr .info .ico_orange,
#sompo .info_ctr .info_inner .info_icon_ctr .info .ico_green,
#sompo .info_ctr .info_inner .news_icon_ctr .category span,
#sompo .info_ctr .info_inner .news_icon_ctr .info .date,
#sompo .info_ctr .info_inner .news_icon_ctr .info .ico_red,
#sompo .info_ctr .info_inner .news_icon_ctr .info .ico_blue,
#sompo .info_ctr .info_inner .news_icon_ctr .info .ico_orange,
#sompo .info_ctr .info_inner .news_icon_ctr .info .ico_green,
#sompo .info_ctr .news_inner .info_icon_ctr .category span,
#sompo .info_ctr .news_inner .info_icon_ctr .info .date,
#sompo .info_ctr .news_inner .info_icon_ctr .info .ico_red,
#sompo .info_ctr .news_inner .info_icon_ctr .info .ico_blue,
#sompo .info_ctr .news_inner .info_icon_ctr .info .ico_orange,
#sompo .info_ctr .news_inner .info_icon_ctr .info .ico_green,
#sompo .info_ctr .news_inner .news_icon_ctr .category span,
#sompo .info_ctr .news_inner .news_icon_ctr .info .date,
#sompo .info_ctr .news_inner .news_icon_ctr .info .ico_red,
#sompo .info_ctr .news_inner .news_icon_ctr .info .ico_blue,
#sompo .info_ctr .news_inner .news_icon_ctr .info .ico_orange,
#sompo .info_ctr .news_inner .news_icon_ctr .info .ico_green,
#sompo .info_list_ctr .info_inner .info_icon_ctr .category span,
#sompo .info_list_ctr .info_inner .info_icon_ctr .info .date,
#sompo .info_list_ctr .info_inner .info_icon_ctr .info .ico_red,
#sompo .info_list_ctr .info_inner .info_icon_ctr .info .ico_blue,
#sompo .info_list_ctr .info_inner .info_icon_ctr .info .ico_orange,
#sompo .info_list_ctr .info_inner .info_icon_ctr .info .ico_green,
#sompo .info_list_ctr .info_inner .news_icon_ctr .category span,
#sompo .info_list_ctr .info_inner .news_icon_ctr .info .date,
#sompo .info_list_ctr .info_inner .news_icon_ctr .info .ico_red,
#sompo .info_list_ctr .info_inner .news_icon_ctr .info .ico_blue,
#sompo .info_list_ctr .info_inner .news_icon_ctr .info .ico_orange,
#sompo .info_list_ctr .info_inner .news_icon_ctr .info .ico_green,
#sompo .info_list_ctr .news_inner .info_icon_ctr .category span,
#sompo .info_list_ctr .news_inner .info_icon_ctr .info .date,
#sompo .info_list_ctr .news_inner .info_icon_ctr .info .ico_red,
#sompo .info_list_ctr .news_inner .info_icon_ctr .info .ico_blue,
#sompo .info_list_ctr .news_inner .info_icon_ctr .info .ico_orange,
#sompo .info_list_ctr .news_inner .info_icon_ctr .info .ico_green,
#sompo .info_list_ctr .news_inner .news_icon_ctr .category span,
#sompo .info_list_ctr .news_inner .news_icon_ctr .info .date,
#sompo .info_list_ctr .news_inner .news_icon_ctr .info .ico_red,
#sompo .info_list_ctr .news_inner .news_icon_ctr .info .ico_blue,
#sompo .info_list_ctr .news_inner .news_icon_ctr .info .ico_orange,
#sompo .info_list_ctr .news_inner .news_icon_ctr .info .ico_green,
#sompo .news_list_ctr .info_inner .info_icon_ctr .category span,
#sompo .news_list_ctr .info_inner .info_icon_ctr .info .date,
#sompo .news_list_ctr .info_inner .info_icon_ctr .info .ico_red,
#sompo .news_list_ctr .info_inner .info_icon_ctr .info .ico_blue,
#sompo .news_list_ctr .info_inner .info_icon_ctr .info .ico_orange,
#sompo .news_list_ctr .info_inner .info_icon_ctr .info .ico_green,
#sompo .news_list_ctr .info_inner .news_icon_ctr .category span,
#sompo .news_list_ctr .info_inner .news_icon_ctr .info .date,
#sompo .news_list_ctr .info_inner .news_icon_ctr .info .ico_red,
#sompo .news_list_ctr .info_inner .news_icon_ctr .info .ico_blue,
#sompo .news_list_ctr .info_inner .news_icon_ctr .info .ico_orange,
#sompo .news_list_ctr .info_inner .news_icon_ctr .info .ico_green,
#sompo .news_list_ctr .news_inner .info_icon_ctr .category span,
#sompo .news_list_ctr .news_inner .info_icon_ctr .info .date,
#sompo .news_list_ctr .news_inner .info_icon_ctr .info .ico_red,
#sompo .news_list_ctr .news_inner .info_icon_ctr .info .ico_blue,
#sompo .news_list_ctr .news_inner .info_icon_ctr .info .ico_orange,
#sompo .news_list_ctr .news_inner .info_icon_ctr .info .ico_green,
#sompo .news_list_ctr .news_inner .news_icon_ctr .category span,
#sompo .news_list_ctr .news_inner .news_icon_ctr .info .date,
#sompo .news_list_ctr .news_inner .news_icon_ctr .info .ico_red,
#sompo .news_list_ctr .news_inner .news_icon_ctr .info .ico_blue,
#sompo .news_list_ctr .news_inner .news_icon_ctr .info .ico_orange,
#sompo .news_list_ctr .news_inner .news_icon_ctr .info .ico_green {
  display: inline-block;
  padding: 0 var(--half_margin);
}

/* line 176, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .sub_info_ctr,
#sompo .info_list_ctr,
#sompo .news_list_ctr {
  width: 100%;
  max-width: var(--max_width);
  margin: 0 auto;
}

/* line 183, app/assets/stylesheets/sompocare/scss/news_.scss */
#sompo .sub_info_ctr h2,
#sompo .info_list_ctr h2,
#sompo .news_list_ctr h2 {
  font-weight: normal;
  font-size: var(--large_font_size);
  background: var(--col_whitesmoke);
  border-bottom: 2px solid var(--col_jnr_white);
  padding: var(--half_margin) 1rem;
}

/* TABLE
---------------------------------------------------------------------------- */
/* base table */
/* line 4, app/assets/stylesheets/sompocare/scss/table.scss */
.tbl_base {
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto 4rem;
  background: var(--col_whitesmoke);
  border: 1px solid var(--col_jnr_white);
  /* sp */
}

/* line 13, app/assets/stylesheets/sompocare/scss/table.scss */
.tbl_base th, .tbl_base td {
  vertical-align: middle;
  padding: 1rem;
}

/* line 18, app/assets/stylesheets/sompocare/scss/table.scss */
.tbl_base th {
  text-align: left;
  font-weight: normal;
  width: 22%;
  background: var(--col_whitesmoke);
  border-bottom: 1px solid var(--col_jnr_white);
  box-sizing: border-box;
}

/* line 27, app/assets/stylesheets/sompocare/scss/table.scss */
.tbl_base td {
  background: white;
  border-bottom: 1px solid var(--col_jnr_white);
  box-sizing: border-box;
  text-align: left;
}

@media only screen and (max-width: 480px) {
  /* line 36, app/assets/stylesheets/sompocare/scss/table.scss */
  .tbl_base th, .tbl_base td {
    width: 100%;
    display: block;
    text-align: left;
    padding: var(--half_margin);
  }
  /* line 42, app/assets/stylesheets/sompocare/scss/table.scss */
  .tbl_base th {
    font-weight: bold;
    width: 100%;
  }
}

/* line 50, app/assets/stylesheets/sompocare/scss/table.scss */
.display_tbl_ctr {
  display: table;
}

/* line 52, app/assets/stylesheets/sompocare/scss/table.scss */
.display_tbl_ctr .display_tbl_cell {
  display: table-cell;
  vertical-align: middle;
}

/* job list tab  */
/* line 58, app/assets/stylesheets/sompocare/scss/table.scss */
.detail_table_ctr {
  /* sp */
}

/* line 59, app/assets/stylesheets/sompocare/scss/table.scss */
.detail_table_ctr a {
  color: var(--main_black);
}

/* line 62, app/assets/stylesheets/sompocare/scss/table.scss */
.detail_table_ctr table {
  font-size: 94%;
  width: 100%;
  border: 1px solid var(--col_jnr_white);
  margin-bottom: var(--half_margin);
}

/* line 67, app/assets/stylesheets/sompocare/scss/table.scss */
.detail_table_ctr table tr {
  border-bottom: 1px solid var(--col_jnr_white);
}

/* line 69, app/assets/stylesheets/sompocare/scss/table.scss */
.detail_table_ctr table tr:nth-child(odd) {
  background: var(--col_whitesmoke);
}

/* line 73, app/assets/stylesheets/sompocare/scss/table.scss */
.detail_table_ctr table th, .detail_table_ctr table td {
  padding: 0.3rem var(--half_margin);
  border: none;
}

/* line 77, app/assets/stylesheets/sompocare/scss/table.scss */
.detail_table_ctr table th {
  width: fit-content;
  border-right: 1px solid var(--col_jnr_white);
}

@media all and (max-width: 480px) {
  /* line 77, app/assets/stylesheets/sompocare/scss/table.scss */
  .detail_table_ctr table th {
    width: 60px;
  }
}

@media screen and (max-width: 768px) {
  /* line 87, app/assets/stylesheets/sompocare/scss/table.scss */
  .detail_table_ctr table td {
    padding: 0.3rem var(--half_margin) !important;
  }
  /* line 89, app/assets/stylesheets/sompocare/scss/table.scss */
  .detail_table_ctr table td::before {
    display: block;
    content: attr(data-label);
    font-size: .8rem;
    color: #6298c6;
  }
}

@media screen and (max-width: 768px) {
  /* line 99, app/assets/stylesheets/sompocare/scss/table.scss */
  .detail_table_ctr table thead tr {
    display: none;
  }
}

@media only screen and (max-width: 320px) {
  /* line 108, app/assets/stylesheets/sompocare/scss/table.scss */
  .detail_table_ctr table th, .detail_table_ctr table td {
    width: 100%;
    display: block;
    text-align: left;
  }
  /* line 113, app/assets/stylesheets/sompocare/scss/table.scss */
  .detail_table_ctr table th {
    font-weight: bold;
    width: 100%;
    font-size: 94%;
    padding: 0.3rem var(--half_margin) 0;
  }
  /* line 119, app/assets/stylesheets/sompocare/scss/table.scss */
  .detail_table_ctr table td {
    padding-top: 0;
  }
}

/* job details tab */
/* line 133, app/assets/stylesheets/sompocare/scss/table.scss */
.inquiryform_inner .job_details_tab {
  padding: 0;
}

/* line 137, app/assets/stylesheets/sompocare/scss/table.scss */
.job_details_tab {
  padding: 1rem;
  display: flex;
  flex-flow: column;
  align-items: center;
}

/* line 142, app/assets/stylesheets/sompocare/scss/table.scss */
.job_details_tab table {
  width: 100%;
  background: white;
  border: 1px solid var(--col_jnr_white);
  box-shadow: whitesmoke 0px 0px 0px 7px inset, whitesmoke 0px 0px 0px 7px;
}

/* line 147, app/assets/stylesheets/sompocare/scss/table.scss */
.job_details_tab table th, .job_details_tab table td {
  vertical-align: middle;
  border: 1px solid var(--col_jnr_white);
  text-align: left !important;
  padding: var(--half_margin);
}

/* line 153, app/assets/stylesheets/sompocare/scss/table.scss */
.job_details_tab table th {
  width: 90px;
  white-space: nowrap;
  box-sizing: border-box;
  text-align: center;
  background: var(--col_whitesmoke);
}

/* line 160, app/assets/stylesheets/sompocare/scss/table.scss */
.job_details_tab table td {
  box-sizing: border-box;
  text-align: left;
  background: white;
}

@media all and (max-width: 480px) {
  /* line 167, app/assets/stylesheets/sompocare/scss/table.scss */
  .job_details_tab table {
    font-size: 88%;
    line-height: 1.4;
  }
}

@media all and (max-width: 375px) {
  /* line 174, app/assets/stylesheets/sompocare/scss/table.scss */
  .job_details_tab table th, .job_details_tab table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  /* line 179, app/assets/stylesheets/sompocare/scss/table.scss */
  .job_details_tab table tr:last-child td:last-child {
    border-bottom: 1px solid var(--col_ecru_dark);
  }
}

/* inquiry form tab */
/* line 188, app/assets/stylesheets/sompocare/scss/table.scss */
.inquiryform_tab table {
  width: 100%;
}

/* line 191, app/assets/stylesheets/sompocare/scss/table.scss */
.inquiryform_tab table tr:nth-child(odd) {
  background: var(--col_ornithogalum);
}

/* line 194, app/assets/stylesheets/sompocare/scss/table.scss */
.inquiryform_tab table th, .inquiryform_tab table td {
  vertical-align: middle;
  text-align: left !important;
  padding: var(--half_margin);
}

/* line 199, app/assets/stylesheets/sompocare/scss/table.scss */
.inquiryform_tab table th {
  width: 15%;
  white-space: nowrap;
  box-sizing: border-box;
  text-align: center;
}

/* line 205, app/assets/stylesheets/sompocare/scss/table.scss */
.inquiryform_tab table td {
  box-sizing: border-box;
  text-align: left;
}

@media all and (max-width: 480px) {
  /* line 212, app/assets/stylesheets/sompocare/scss/table.scss */
  .inquiryform_tab table th {
    padding: 0.5rem var(--half_margin) 0;
  }
  /* line 216, app/assets/stylesheets/sompocare/scss/table.scss */
  .inquiryform_tab table td {
    padding: 0.5rem var(--half_margin);
  }
  /* line 220, app/assets/stylesheets/sompocare/scss/table.scss */
  .inquiryform_tab table th, .inquiryform_tab table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}

/* 求職者一覧 */
/* line 231, app/assets/stylesheets/sompocare/scss/table.scss */
.job-seeker {
  width: 98%;
}

/* line 234, app/assets/stylesheets/sompocare/scss/table.scss */
.job-seeker table img {
  height: 18px;
  vertical-align: middle !important;
}

/* line 238, app/assets/stylesheets/sompocare/scss/table.scss */
.job-seeker table tr {
  border-bottom: 1px solid var(--col_jnr_white);
}

/* line 240, app/assets/stylesheets/sompocare/scss/table.scss */
.job-seeker table tr:nth-child(odd) {
  background: none;
}

/* line 243, app/assets/stylesheets/sompocare/scss/table.scss */
.job-seeker table tr td {
  border-left: 1px solid var(--col_jnr_white);
}

/* line 246, app/assets/stylesheets/sompocare/scss/table.scss */
.job-seeker table tr td span {
  height: 18px;
  padding: 0 2px;
}

/* line 254, app/assets/stylesheets/sompocare/scss/table.scss */
.job-seeker table tr:nth-child(1) th, .job-seeker table tr:nth-child(2) th {
  font-weight: bold !important;
  background: var(--col_whitesmoke) !important;
}

/* line 258, app/assets/stylesheets/sompocare/scss/table.scss */
.job-seeker table a {
  color: #1d54a7 !important;
  text-decoration: none !important;
}

/* line 262, app/assets/stylesheets/sompocare/scss/table.scss */
.job-seeker table select {
  margin-right: 0 !important;
}

/* line 265, app/assets/stylesheets/sompocare/scss/table.scss */
.job-seeker table .maplink {
  width: fit-content !important;
  text-decoration: none !important;
  padding: 0 0.2rem !important;
  margin: 2px 0 !important;
  display: inline-block !important;
  white-space: nowrap !important;
}

/* line 273, app/assets/stylesheets/sompocare/scss/table.scss */
.job-seeker table .odd_row {
  background: var(--col_whitesmoke);
}

@media all and (max-width: 768px) {
  /* line 278, app/assets/stylesheets/sompocare/scss/table.scss */
  .job-seeker tr {
    border-bottom: 0 !important;
  }
  /* line 282, app/assets/stylesheets/sompocare/scss/table.scss */
  .job-seeker tr:nth-child(1) th, .job-seeker tr:nth-child(2) th {
    border-bottom: 1px solid var(--col_jnr_white) !important;
    text-align: center !important;
    background: var(--col_whitesmoke) !important;
  }
  /* line 288, app/assets/stylesheets/sompocare/scss/table.scss */
  .job-seeker th, .job-seeker td {
    width: 100% !important;
    display: block;
    text-align: left;
    padding: var(--half_margin);
    border-left: 0 !important;
  }
  /* line 295, app/assets/stylesheets/sompocare/scss/table.scss */
  .job-seeker th {
    border-right: 0 !important;
    font-weight: bold;
    width: 100%;
  }
  /* line 300, app/assets/stylesheets/sompocare/scss/table.scss */
  .job-seeker td {
    border-bottom: 1px solid #e6e6e6 !important;
  }
  /* line 302, app/assets/stylesheets/sompocare/scss/table.scss */
  .job-seeker td:last-child {
    border-bottom: 0;
  }
}

/* FLEX
---------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/sompocare/scss/flex.scss */
#sompo .flex_column {
  display: flex;
  flex-flow: column;
  gap: var(--half_margin);
}

/* line 10, app/assets/stylesheets/sompocare/scss/flex.scss */
#sompo .flex_center_ctr {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--half_margin);
}

/* line 18, app/assets/stylesheets/sompocare/scss/flex.scss */
#sompo .flex_left {
  margin-left: auto;
}

/* line 21, app/assets/stylesheets/sompocare/scss/flex.scss */
#sompo .flex_right {
  margin-right: auto;
}

/* HEADER
---------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header {
  position: fixed;
  margin-top: 0;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  background: white;
  z-index: 1000;
}

/* line 13, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header .header_inner_ctr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0 1rem;
}

/* line 21, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header .header_inner_ctr .header_logo,
#sompo header .header_inner_ctr .header_link {
  display: flex;
  align-items: center;
  padding: var(--half_margin);
  gap: 1rem;
}

/* line 30, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header .header_inner_ctr .header_logo a img,
#sompo header .header_inner_ctr .header_link a img {
  height: 30px;
}

/* line 36, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header .header_inner_ctr .header_logo {
  width: auto;
}

/* line 39, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header .header_inner_ctr .header_logo span {
  font-size: var(--small_font_size);
}

@media only screen and (max-width: 600px) {
  /* line 39, app/assets/stylesheets/sompocare/scss/header.scss */
  #sompo header .header_inner_ctr .header_logo span {
    display: none;
  }
}

/* line 47, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header .header_inner_ctr .header_link {
  width: auto;
  justify-content: end;
  font-size: var(--small_font_size);
}

/* line 52, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header .header_inner_ctr .header_link a {
  font-weight: 600;
  color: var(--main_black);
}

/* line 56, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header .header_inner_ctr .header_link a:hover {
  color: orange;
  transition: .3s;
}

/* line 62, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header .header_inner_ctr .header_link .search {
  color: var(--main_black);
  font-size: var(--medium_font_size);
  border-radius: .3rem;
  padding: var(--half_margin) 0.8rem;
  background: var(--col_light_yellow);
  border: 1px solid var(--col_yellow);
}

/* line 70, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header .header_inner_ctr .header_link .search i {
  margin-right: .2rem;
}

/* line 74, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header .header_inner_ctr .header_link .search:hover {
  color: var(--main_black);
  background: var(--col_yellow);
}

/* line 82, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header .header_new_ctr {
  display: flex;
  align-items: center;
  background: var(--col_whitesmoke);
  border-top: 1px solid var(--col_jnr_white);
  border-bottom: 1px solid var(--col_jnr_white);
  font-size: var(--small_font_size);
}

/* line 90, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header .header_new_ctr .header_new_inner {
  display: table;
  border-collapse: separate;
}

/* line 94, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header .header_new_ctr .header_new_inner .new {
  font-weight: 600;
  color: white;
  background: var(--col_tomatored);
  padding: 0 var(--half_margin);
  width: 2rem;
  text-align: center;
}

/* line 103, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header .header_new_ctr .header_new_inner p, #sompo header .header_new_ctr .header_new_inner .new {
  padding: .4rem 1rem;
  display: table-cell;
  vertical-align: middle;
}

/* line 109, app/assets/stylesheets/sompocare/scss/header.scss */
#sompo header .header_new_ctr .header_new_inner .num {
  color: var(--col_tomatored);
  font-size: var(--main_font_size);
  font-weight: 600;
  padding: .2rem;
}

/* VARIABLE
---------------------------------------------------------------------------- */
/* line 3, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo {
  /*
    .postal .form_inner {
        margin: 0 auto;
        box-shadow :none;
        padding: 0;
    }*/
}

/* line 4, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr {
  position: relative;
  background: var(--col_hero_bg);
}

/* line 8, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .hero_search_ctr {
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  width: 100%;
  max-width: var(--max_width);
  margin: 0 auto;
  max-height: 600px;
  padding: 13rem 0 7rem;
  background: url(/assets/sompocare/hero_visual-3e5969febece77d2efe6e28ac2e851324c9bb27f0f9be2f9485c830d09390544.jpg) no-repeat;
  background-size: cover;
  background-position: left top;
}

@media only screen and (min-width: 768px) {
  /* line 8, app/assets/stylesheets/sompocare/scss/hero_.scss */
  #sompo .hero_visual_ctr .hero_search_ctr {
    align-items: flex-end;
    padding-right: 3rem;
  }
}

@media only screen and (max-width: 768px) {
  /* line 8, app/assets/stylesheets/sompocare/scss/hero_.scss */
  #sompo .hero_visual_ctr .hero_search_ctr {
    background-position: 0% 50%;
    padding: 20rem 1rem 2rem;
  }
}

/* line 35, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .add_search a {
  display: block;
  font-size: 12px;
  color: var(--main-black);
  text-align: center;
  margin-top: var(--half_margin);
  padding: 0.2rem var(--half_margin);
  background: var(--col_whitesmoke);
  border: 1px solid var(--col_jnr_white);
  border-radius: 5px;
  transition: all .3s;
}

/* line 47, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .add_search a:hover {
  background: var(--col_jnr_white);
}

/* line 53, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner,
#sompo .postal .form_inner {
  position: relative;
  color: var(--main_black);
  padding: 5%;
  max-width: 550px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  background: rgba(255, 255, 255, 0.7);
  /* border: 1px solid var(--main_black); */
  /* search container */
}

@media only screen and (max-width: 768px) {
  /* line 53, app/assets/stylesheets/sompocare/scss/hero_.scss */
  #sompo .hero_visual_ctr .form_inner,
#sompo .postal .form_inner {
    box-shadow: none;
  }
}

/* line 68, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .hama_guriko,
#sompo .postal .form_inner .hama_guriko {
  top: -2rem;
  right: 2rem;
  position: absolute;
}

/* line 72, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .hama_guriko img,
#sompo .postal .form_inner .hama_guriko img {
  max-width: 120px;
}

@media only screen and (max-width: 500px) {
  /* line 68, app/assets/stylesheets/sompocare/scss/hero_.scss */
  #sompo .hero_visual_ctr .form_inner .hama_guriko,
#sompo .postal .form_inner .hama_guriko {
    right: 0;
  }
  /* line 77, app/assets/stylesheets/sompocare/scss/hero_.scss */
  #sompo .hero_visual_ctr .form_inner .hama_guriko img,
#sompo .postal .form_inner .hama_guriko img {
    max-width: 100px;
  }
}

@media only screen and (max-width: 380px) {
  /* line 68, app/assets/stylesheets/sompocare/scss/hero_.scss */
  #sompo .hero_visual_ctr .form_inner .hama_guriko,
#sompo .postal .form_inner .hama_guriko {
    display: none;
  }
}

/* line 86, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .hero_heading,
#sompo .postal .form_inner .hero_heading {
  position: absolute;
  font-family: var(--en_font);
  font-size: 300%;
  top: -34px;
  left: 0;
  z-index: 100;
  transform: rotate(-8deg);
  -moz-transform: rotate(-8deg);
  -webkit-transform: rotate(-8deg);
}

@media only screen and (max-width: 768px) {
  /* line 86, app/assets/stylesheets/sompocare/scss/hero_.scss */
  #sompo .hero_visual_ctr .form_inner .hero_heading,
#sompo .postal .form_inner .hero_heading {
    font-size: 260%;
    top: -50px;
  }
}

/* line 103, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner h1,
#sompo .postal .form_inner h1 {
  font-weight: normal;
  margin-bottom: 1rem;
}

/* line 107, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner h1 span,
#sompo .postal .form_inner h1 span {
  display: block;
  font-size: 16px;
  margin-top: .5rem;
}

@media only screen and (max-width: 768px) {
  /* line 103, app/assets/stylesheets/sompocare/scss/hero_.scss */
  #sompo .hero_visual_ctr .form_inner h1,
#sompo .postal .form_inner h1 {
    font-size: 180%;
    line-height: 130%;
  }
}

@media only screen and (max-width: 500px) {
  /* line 103, app/assets/stylesheets/sompocare/scss/hero_.scss */
  #sompo .hero_visual_ctr .form_inner h1,
#sompo .postal .form_inner h1 {
    font-size: 140%;
    line-height: 150%;
  }
}

/* line 125, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .add_view,
#sompo .postal .form_inner .add_view {
  padding: 0 !important;
  margin: 0.5rem 0 !important;
  background: transparent !important;
}

/* line 129, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .add_view #address_addr,
#sompo .postal .form_inner .add_view #address_addr {
  background: white !important;
  margin-bottom: 0.5rem;
}

/* line 136, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .input_search_ctr,
#sompo .postal .form_inner .input_search_ctr {
  display: taable;
  position: relative;
  width: 100%;
}

/* line 140, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .input_search_ctr .input_search_inner, #sompo .hero_visual_ctr .form_inner .input_search_ctr .search_btn,
#sompo .postal .form_inner .input_search_ctr .input_search_inner,
#sompo .postal .form_inner .input_search_ctr .search_btn {
  display: table-cell;
  vertical-align: middle;
}

/* line 144, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .input_search_ctr .input_search_inner,
#sompo .postal .form_inner .input_search_ctr .input_search_inner {
  display: table-cell;
  padding: 0 .4rem 0 0;
  width: 100%;
}

/* line 149, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .input_search_ctr .input_search_inner input[type="add"],
#sompo .postal .form_inner .input_search_ctr .input_search_inner input[type="add"] {
  padding: var(--half_margin);
  box-sizing: border-box;
  width: 100%;
  border: 1px solid var(--col_jnr_white);
  border-radius: 0;
  letter-spacing: var(--main_letter_spacing);
  background: var(--col_light_yellow);
}

/* line 158, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .input_search_ctr .input_search_inner input[type="add"]::placeholder,
#sompo .postal .form_inner .input_search_ctr .input_search_inner input[type="add"]::placeholder {
  color: var(--col_usuzumi);
}

@media only screen and (max-width: 480px) {
  /* line 158, app/assets/stylesheets/sompocare/scss/hero_.scss */
  #sompo .hero_visual_ctr .form_inner .input_search_ctr .input_search_inner input[type="add"]::placeholder,
#sompo .postal .form_inner .input_search_ctr .input_search_inner input[type="add"]::placeholder {
    font-size: var(--medium_font_size);
  }
}

/* line 167, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .input_search_ctr .input_search_inner fieldset,
#sompo .postal .form_inner .input_search_ctr .input_search_inner fieldset {
  width: 100%;
  border-left: 1px solid var(--col_jnr_white);
  border-bottom: 1px solid var(--col_jnr_white);
}

/* line 172, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .input_search_ctr .input_search_inner fieldset ul,
#sompo .postal .form_inner .input_search_ctr .input_search_inner fieldset ul {
  width: 100%;
  display: flex;
  border-width: 0 1px 0px 0px;
  border-style: solid;
  border-color: var(--col_jnr_white);
}

/* line 179, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .input_search_ctr .input_search_inner fieldset ul li,
#sompo .postal .form_inner .input_search_ctr .input_search_inner fieldset ul li {
  width: 33.33333%;
  width: -webkit-calc(100% / 3);
  width: calc(100% / 3);
  border-right: 1px solid var(--col_jnr_white);
}

/* line 185, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .input_search_ctr .input_search_inner fieldset ul li:last-child,
#sompo .postal .form_inner .input_search_ctr .input_search_inner fieldset ul li:last-child {
  border-right: 0;
}

/* line 189, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .input_search_ctr .input_search_inner fieldset ul li .check_input,
#sompo .postal .form_inner .input_search_ctr .input_search_inner fieldset ul li .check_input {
  text-align: center;
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}

/* line 194, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .input_search_ctr .input_search_inner fieldset ul li .check_label,
#sompo .postal .form_inner .input_search_ctr .input_search_inner fieldset ul li .check_label {
  font-size: var(--medium_font_size);
  cursor: pointer;
  text-align: center;
  width: 100%;
  display: inline-block;
  transition: all .3s;
  background: white;
  padding: var(--half_margin);
}

/* line 205, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .input_search_ctr .input_search_inner fieldset ul li .check_input,
#sompo .postal .form_inner .input_search_ctr .input_search_inner fieldset ul li .check_input {
  /*
                                &:focus + .check_label {
                                    outline-color: #4D90FE;
                                    outline-style: auto;
                                }*/
}

/* line 206, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .input_search_ctr .input_search_inner fieldset ul li .check_input:checked + .check_label,
#sompo .postal .form_inner .input_search_ctr .input_search_inner fieldset ul li .check_input:checked + .check_label {
  background: var(--main_black);
  color: white;
}

/* line 222, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .input_search_ctr .search_btn,
#sompo .postal .form_inner .input_search_ctr .search_btn {
  cursor: pointer;
  background: var(--col_yellow);
  border: 0.1rem solid var(--col_yellow);
  border-radius: 7px;
}

/* line 228, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .input_search_ctr .search_btn input,
#sompo .postal .form_inner .input_search_ctr .search_btn input {
  padding: 30% 1rem;
  cursor: pointer;
}

/* line 232, app/assets/stylesheets/sompocare/scss/hero_.scss */
#sompo .hero_visual_ctr .form_inner .input_search_ctr .search_btn:hover,
#sompo .postal .form_inner .input_search_ctr .search_btn:hover {
  color: orange;
  background: var(--col_light_yellow);
  transition: all .3s;
}

/* VARIABLE
---------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/sompocare/scss/info_banner.scss */
#sompo .info_banner_ctr,
#sompo .info_banner_ctr a {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 10, app/assets/stylesheets/sompocare/scss/info_banner.scss */
#sompo .info_banner_ctr {
  position: relative;
  background: var(--col_light_yellow);
}

/* line 14, app/assets/stylesheets/sompocare/scss/info_banner.scss */
#sompo .info_banner_ctr a, #sompo .info_banner_ctr p {
  color: var(--main_black);
}

/* line 18, app/assets/stylesheets/sompocare/scss/info_banner.scss */
#sompo .info_banner_ctr a {
  color: var(--main_black);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--half_margin);
  max-width: 1080px;
  width: 100%;
  transition: .3s;
}

/* line 28, app/assets/stylesheets/sompocare/scss/info_banner.scss */
#sompo .info_banner_ctr a:hover {
  background: var(--col_yellow);
}

/* line 32, app/assets/stylesheets/sompocare/scss/info_banner.scss */
#sompo .info_banner_ctr a .info_banner_inner {
  margin-left: 1rem;
}

/* line 35, app/assets/stylesheets/sompocare/scss/info_banner.scss */
#sompo .info_banner_ctr a .info_banner_inner h2 {
  font-size: 120%;
  position: relative;
  display: inline-block;
  width: auto;
  color: white;
  margin-bottom: var(--half_margin);
  padding: var(--half_margin) 1rem;
  text-align: center;
  background: var(--main_black);
  z-index: 0;
}

/* line 47, app/assets/stylesheets/sompocare/scss/info_banner.scss */
#sompo .info_banner_ctr a .info_banner_inner h2:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  margin-left: 40%;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 20px 15px 0;
  border-color: transparent var(--main_black) transparent transparent;
  z-index: -1;
}

/* line 62, app/assets/stylesheets/sompocare/scss/info_banner.scss */
#sompo .info_banner_ctr a .info_banner_inner .tel_num {
  color: var(--main_black);
  font-family: var(--num_font);
  font-size: 280%;
  -webkit-text-stroke: 1px var(--col_light_yellow);
  text-stroke: 1px var(--col_light_yellow);
}

@media only screen and (max-width: 380px) {
  /* line 62, app/assets/stylesheets/sompocare/scss/info_banner.scss */
  #sompo .info_banner_ctr a .info_banner_inner .tel_num {
    font-size: 240%;
  }
}

@media only screen and (max-width: 540px) {
  /* line 32, app/assets/stylesheets/sompocare/scss/info_banner.scss */
  #sompo .info_banner_ctr a .info_banner_inner {
    z-index: 100;
    padding: 1rem 1rem 1rem 0;
  }
}

/* line 81, app/assets/stylesheets/sompocare/scss/info_banner.scss */
#sompo .info_banner_ctr img {
  max-width: 200px;
  margin-top: 1rem;
}

@media only screen and (max-width: 540px) {
  /* line 81, app/assets/stylesheets/sompocare/scss/info_banner.scss */
  #sompo .info_banner_ctr img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: -3rem;
    right: 1rem;
    z-index: 1;
  }
}

/* PARAMETER
---------------------------------------------------------------------------- */
/* line 3, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo {
  /* parameter */
  /* parameter */
  /* parameter */
}

/* line 5, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo .parameter_ctr {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

/* line 11, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo .parameter_ctr, #sompo .job_details_inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

/* line 17, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo .parameter_ctr {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem;
}

/* line 21, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo .parameter_ctr dl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* line 27, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo .parameter_ctr dl dt {
  font-size: 90%;
  color: white;
  padding: 0 var(--half_margin) 0;
  width: fit-content;
}

/* line 33, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo .parameter_ctr dl dt.red {
  background: var(--col_tomatored);
}

/* line 36, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo .parameter_ctr dl dt.blue {
  background: var(--col_blue);
}

/* line 40, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo .parameter_ctr dl dd {
  font-size: 150%;
  display: flex;
}

/* line 45, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo .parameter_ctr dl dd ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* line 51, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo .parameter_ctr dl dd ul li .man,
#sompo .parameter_ctr dl dd ul li .woman,
#sompo .parameter_ctr dl dd ul li .gender {
  display: inline-block;
  height: 25px;
  width: 15px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* line 61, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo .parameter_ctr dl dd ul li .man {
  background-image: url(/assets/sompocare/icon_man-f1f785fd84563a7f70f73676538ca877ea0b9144e3f779149ba4088eefc4ebcc.png);
}

/* line 64, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo .parameter_ctr dl dd ul li .woman {
  background-image: url(/assets/sompocare/icon_woman-e2225e60471be17b2a7075a391c57f98fa1ddb6e3c10cfef4dd1cb1e59e0a588.png);
}

/* line 67, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo .parameter_ctr dl dd ul li .gender {
  background-image: url(/assets/sompocare/icon_gender-e86c061a5e29fe71197ff026f871871088df4c9a25304d0a5f0bd5a130cff14a.png);
}

/* line 73, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo .parameter_ctr dl dd .balloon {
  font-size: var(--main_font_size);
  color: var(--main_black);
  position: relative;
  display: inline-block;
  width: fit-content;
  padding: var(--half_margin) 1rem;
  margin-left: 1rem;
  background-color: var(--col_light_yellow);
  border-bottom: 2px solid var(--col_yellow);
  border-radius: 2rem;
}

/* line 85, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo .parameter_ctr dl dd .balloon:before {
  content: '';
  position: absolute;
  display: block;
  z-index: 1;
  border-style: solid;
  border-color: transparent var(--col_light_yellow);
  border-width: 10px 10px 10px 0;
  top: 50%;
  left: -7px;
  margin-top: -10px;
}

/* line 101, app/assets/stylesheets/sompocare/scss/parameter_.scss */
#sompo .parameter_ctr dl, #sompo .parameter_ctr p {
  margin-bottom: 2rem;
}

/* VARIABLE
---------------------------------------------------------------------------- */
/* line 3, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo {
  /* accordion details */
  /* 検索結果 */
}

/* line 5, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_head_mt {
  margin-top: 12rem;
}

/* line 8, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_ctr {
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  padding: 1rem;
  max-width: 1080px;
  border-radius: 1rem;
}

/* line 16, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_ctr h2 {
  font-size: 100%;
  margin-bottom: 1rem;
}

/* line 19, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_ctr h2 i {
  margin-right: var(--half_margin);
}

/* line 24, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_ctr table {
  width: 100%;
  background: white;
  margin-bottom: 1.5rem;
}

/* line 29, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_ctr table th {
  color: white;
  width: fit-content;
  white-space: nowrap;
  background: var(--main_black);
}

/* line 35, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_ctr table td {
  vertical-align: middle;
}

/* line 38, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_ctr table td ul {
  display: flex;
  flex-flow: column;
  gap: var(--half_margin);
}

/* line 46, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_ctr table td dl, #sompo .job_search_ctr table td dl div {
  display: flex;
  gap: .5rem;
}

/* line 51, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_ctr table td dl {
  flex-flow: column;
}

/* line 54, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_ctr table td dl div {
  /* display: flex;
                        justify-content: center;
                        align-items: center; */
}

/* line 59, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_ctr table td dl div dt {
  white-space: nowrap;
}

/* line 66, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_ctr table th, #sompo .job_search_ctr table td {
  padding: 1rem;
  border: 1px solid var(--col_usuzumi);
  text-align: left;
}

/* line 75, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_inner {
  /**/
}

/* line 76, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_inner h3 {
  margin: 2rem 1rem 1rem;
}

/* line 79, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_inner .job_search_scroll_ctr {
  overflow-y: scroll;
  height: 70vh;
  padding: 1rem;
  border-bottom: 3px solid var(--main_black);
}

/* line 86, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_inner .job_search_scroll_ctr details div {
  padding: 1rem 1rem 1.5rem;
}

/* line 93, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_inner .confilm_area {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  margin-right: 1rem;
}

@media only screen and (max-width: 420px) {
  /* line 93, app/assets/stylesheets/sompocare/scss/job_search.scss */
  #sompo .job_search_inner .confilm_area {
    flex-flow: column;
  }
}

/* line 105, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo .job_search_inner .confilm_area .job_num span {
  color: var(--col_tomatored);
  font-size: 140%;
  padding: var(--half_margin);
}

/* line 117, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo #search_results_ctr .search_results_ctr,
#sompo #search_results_ctr .search_results_ctr div {
  display: flex;
  align-items: center;
  gap: var(--half_margin);
}

/* line 123, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo #search_results_ctr .search_results_ctr {
  padding: 0 var(--half_margin);
  justify-content: end;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto var(--half_margin);
}

@media only screen and (max-width: 480px) {
  /* line 123, app/assets/stylesheets/sompocare/scss/job_search.scss */
  #sompo #search_results_ctr .search_results_ctr {
    flex-flow: column;
  }
}

/* line 134, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo #search_results_ctr .search_results_ctr .job_num dt,
#sompo #search_results_ctr .search_results_ctr .trans_time dt {
  padding: 0.2rem var(--half_margin);
  background: white;
}

/* line 141, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo #search_results_ctr .search_results_ctr .job_num dt {
  color: white;
  background: var(--main_black);
}

/* line 145, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo #search_results_ctr .search_results_ctr .job_num span {
  color: var(--col_tomatored);
  font-size: 140%;
  padding: var(--half_margin);
}

/* line 153, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo #search_results_ctr .search_results_ctr .trans_time dt {
  border: 1px solid var(--col_jnr_white);
}

/* line 157, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo #search_results_ctr .search_results_ctr .trans_time dd {
  /* IE11 hide native button (thanks Matt!) */
}

/* line 159, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo #search_results_ctr .search_results_ctr .trans_time dd label {
  position: relative;
  float: left;
  width: fit-content;
}

/* line 167, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo #search_results_ctr .search_results_ctr .trans_time dd select::-ms-expand {
  display: none;
}

/* line 171, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo #search_results_ctr .search_results_ctr .trans_time dd label:after {
  position: absolute;
  content: '<>';
  font: 17px "Consolas", monospace;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: .4rem;
  /*Adjust for position however you want*/
  top: .3rem;
  padding: 0 0 2px;
  border-bottom: 1px solid var(--col_jnr_white);
  pointer-events: none;
}

/* line 189, app/assets/stylesheets/sompocare/scss/job_search.scss */
#sompo #search_results_ctr .search_results_ctr .trans_time dd select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0.2rem 2rem 0.2rem var(--half_margin);
  border: 1px solid var(--col_jnr_white);
  -ms-word-break: normal;
  background: white;
}

/* SEARCH LIST
---------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
#sompo #search_results_ctr {
  padding: 6rem .4rem;
  margin-bottom: 0;
  background: var(--col_ecru);
}

@media only screen and (max-width: 380px) {
  /* line 4, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
  #sompo #search_results_ctr {
    padding: 6rem 0;
  }
}

/* line 13, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
#sompo .search_list_ctr {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 1rem;
}

/* line 19, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
#sompo .search_list_ctr .search_list_inner {
  width: 100%;
  max-width: 1080px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
  background: white;
  /* box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px; */
}

/* line 26, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
#sompo .search_list_ctr .search_list_inner h2 a {
  position: relative;
  color: var(--main_black);
  font-size: 70%;
  display: block;
  background: var(--col_light_yellow);
  border-left: 0.8rem solid var(--col_yellow);
  padding: .8rem 1rem;
  transition: .3s;
}

/* line 35, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
#sompo .search_list_ctr .search_list_inner h2 a:after {
  font-size: 120%;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: var(--half_margin);
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

/* line 47, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
#sompo .search_list_ctr .search_list_inner h2 a:hover {
  background: var(--col_yellow);
}

/* line 52, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
#sompo .search_list_ctr .search_list_inner .search_list_detail_ctr {
  padding: 1rem 1rem 3rem;
}

@media only screen and (max-width: 380px) {
  /* line 52, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
  #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr {
    padding: 1rem .4rem 3rem;
  }
}

/* line 57, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
#sompo .search_list_ctr .search_list_inner .search_list_detail_ctr h3 {
  color: orange;
  padding: 0 2rem;
  font-size: 110%;
  font-weight: normal;
}

@media only screen and (max-width: 890px) {
  /* line 57, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
  #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr h3 {
    padding: 0;
    text-align: center;
  }
}

@media only screen and (max-width: 480px) {
  /* line 57, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
  #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr h3 {
    font-weight: bold;
    font-size: 100%;
  }
}

/* line 71, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
#sompo .search_list_ctr .search_list_inner .search_list_detail_ctr p {
  margin-bottom: 1rem;
}

/* line 74, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
#sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner {
  /* 2column--img/table */
  padding: 1rem 2rem 2rem;
  gap: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 480px) {
  /* line 74, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
  #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner {
    gap: var(--half_margin);
  }
}

/* line 84, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
#sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_img_ctr {
  width: 40%;
  min-width: 300px;
}

/* line 87, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
#sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_img_ctr img {
  width: 100%;
  margin-bottom: var(--half_margin);
}

/* line 92, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
#sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_table_ctr {
  width: 60%;
}

/* line 95, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
#sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_table_ctr .ul_date_ctr {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .3rem;
}

/* line 101, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
#sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_table_ctr .ul_date_ctr li {
  padding: 0 1rem .1rem;
  border-radius: 1rem;
  background: var(--col_whitesmoke);
  border: 1px solid var(--col_jnr_white);
}

@media only screen and (max-width: 640px) {
  /* line 101, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
  #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_table_ctr .ul_date_ctr li {
    padding: .1rem 1rem .1rem;
    font-size: 13px;
  }
}

/* line 115, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
#sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_table_ctr a p br {
  display: none;
}

@media only screen and (max-width: 640px) {
  /* line 115, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
  #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_table_ctr a p br {
    display: block;
  }
}

@media only screen and (max-width: 890px) {
  /* line 127, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
  #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner {
    padding: 2rem 0 2rem;
    flex-flow: column;
  }
  /* line 130, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
  #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_img_ctr {
    min-width: inherit;
  }
  /* line 133, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
  #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_table_ctr, #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_img_ctr {
    width: 80%;
  }
}

@media only screen and (max-width: 600px) {
  /* line 139, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
  #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner {
    padding: 1rem 0 2rem;
  }
  /* line 141, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
  #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_table_ctr, #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_img_ctr {
    width: 100%;
  }
  /* line 144, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
  #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_table_ctr .main_img, #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_img_ctr .main_img {
    width: 80% !important;
    margin: 0 auto;
  }
  /* line 147, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
  #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_table_ctr .main_img img, #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_img_ctr .main_img img {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) and (max-width: 480px) {
  /* line 144, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
  #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_table_ctr .main_img, #sompo .search_list_ctr .search_list_inner .search_list_detail_ctr .search_list_detail_inner .detail_img_ctr .main_img {
    margin: 0 auto 1rem;
  }
}

@media only screen and (max-width: 480px) {
  /* line 159, app/assets/stylesheets/sompocare/scss/job_search_list.scss */
  #sompo .search_list_ctr .none_480 {
    display: none;
  }
}

/* SEARCH LIST
---------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/sompocare/scss/job_details.scss */
#sompo .job_details_ctr {
  max-width: 1080px;
  width: 100%;
}

/* line 7, app/assets/stylesheets/sompocare/scss/job_details.scss */
#sompo .job_details_ctr .job_details_inner, #sompo .job_details_ctr .job_details_inner .search_list_btn_ctr, #sompo .job_details_ctr .job_details_tab {
  margin-bottom: 4rem;
}

/* line 9, app/assets/stylesheets/sompocare/scss/job_details.scss */
#sompo .job_details_ctr .job_details_inner:last-child, #sompo .job_details_ctr .job_details_inner .search_list_btn_ctr:last-child, #sompo .job_details_ctr .job_details_tab:last-child {
  margin-bottom: 0;
}

/* line 13, app/assets/stylesheets/sompocare/scss/job_details.scss */
#sompo .job_details_ctr .job_details_inner {
  margin: 0 auto;
}

/* line 17, app/assets/stylesheets/sompocare/scss/job_details.scss */
#sompo .job_details_ctr .job_details_inner .job_details_tab:last-child {
  margin-bottom: 0;
}

/* line 20, app/assets/stylesheets/sompocare/scss/job_details.scss */
#sompo .job_details_ctr .job_details_inner .job_details_tab table {
  margin-bottom: 2rem;
}

/* line 25, app/assets/stylesheets/sompocare/scss/job_details.scss */
#sompo .job_details_ctr .job_details_inner {
  /* swiper */
}

/* line 27, app/assets/stylesheets/sompocare/scss/job_details.scss */
#sompo .job_details_ctr .job_details_inner #swiper {
  position: relative;
  overflow: hidden;
}

/* line 30, app/assets/stylesheets/sompocare/scss/job_details.scss */
#sompo .job_details_ctr .job_details_inner #swiper .swiper-container {
  width: 100%;
  overflow: visible !important;
}

/* line 33, app/assets/stylesheets/sompocare/scss/job_details.scss */
#sompo .job_details_ctr .job_details_inner #swiper .swiper-container .swiper-slide {
  text-align: center;
  border: 1px solid var(--col_whitesmoke);
  background: white;
}

/* line 38, app/assets/stylesheets/sompocare/scss/job_details.scss */
#sompo .job_details_ctr .job_details_inner #swiper .swiper-container .swiper-slide .video-js,
#sompo .job_details_ctr .job_details_inner #swiper .swiper-container .swiper-slide iframe,
#sompo .job_details_ctr .job_details_inner #swiper .swiper-container .swiper-slide img {
  aspect-ratio: 4/3;
  height: 350px;
  padding: 1rem;
  width: 100% !important;
  object-fit: contain;
}

/* line 48, app/assets/stylesheets/sompocare/scss/job_details.scss */
#sompo .job_details_ctr .job_details_inner #swiper .swiper-container .swiper-slide-prev, #sompo .job_details_ctr .job_details_inner #swiper .swiper-container .swiper-slide-next {
  opacity: 0.5;
  z-index: -1;
}

/* line 52, app/assets/stylesheets/sompocare/scss/job_details.scss */
#sompo .job_details_ctr .job_details_inner #swiper .swiper-container .swiper-button-next, #sompo .job_details_ctr .job_details_inner #swiper .swiper-container .swiper-button-prev {
  background-color: gray;
  background-size: 30px 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: -50px;
}

/* line 60, app/assets/stylesheets/sompocare/scss/job_details.scss */
#sompo .job_details_ctr .job_details_inner #swiper .swiper-container .swiper-pagination {
  position: relative;
  padding: 1rem 0;
}

/* PRIVACY
---------------------------------------------------------------------------- */
/* line 5, app/assets/stylesheets/sompocare/scss/privacy.scss */
#sompo .contents_ctr.privacy .contents_inner {
  border-bottom: 1px dotted var(--col_jnr_white);
  padding: 2rem 1rem;
}

/* line 9, app/assets/stylesheets/sompocare/scss/privacy.scss */
#sompo .contents_ctr.privacy .contents_inner:last-child {
  border-bottom: none;
}

/* line 13, app/assets/stylesheets/sompocare/scss/privacy.scss */
#sompo .contents_ctr.privacy .contents_inner h2 {
  font-size: 110%;
  font-weight: bolder;
  margin-bottom: 1rem;
}

/* RECOMMENDED
---------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/sompocare/scss/recommended.scss */
#sompo .recommended_ctr {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

/* line 11, app/assets/stylesheets/sompocare/scss/recommended.scss */
#sompo .recommended_ctr .recommended_inner {
  border: 7px solid var(--col_yellow);
  width: fit-content;
  max-width: 800px;
  padding: 0 2rem 2rem;
  background: white;
  border-radius: 1rem;
}

/* line 19, app/assets/stylesheets/sompocare/scss/recommended.scss */
#sompo .recommended_ctr .recommended_inner i {
  font-size: 140%;
  margin-right: var(--half_margin);
}

@media only screen and (max-width: 480px) {
  /* line 11, app/assets/stylesheets/sompocare/scss/recommended.scss */
  #sompo .recommended_ctr .recommended_inner {
    padding: 0 1rem 1rem;
  }
}

/* line 28, app/assets/stylesheets/sompocare/scss/recommended.scss */
#sompo .recommended_ctr .recommended_inner h4 {
  font-size: 110%;
  width: 90%;
  margin: 0 auto 2rem;
  padding: .2em 1.6em .4em;
  position: relative;
  color: white;
  text-align: center;
  z-index: 1;
  background: var(--col_yellow);
  /*  &::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: -1;
            background: var(--col_yellow);
            transform: scaleY(1.3) perspective(20rem) rotateX(-45deg);
            transform-origin: bottom;
          } */
}

@media only screen and (max-width: 600px) {
  /* line 55, app/assets/stylesheets/sompocare/scss/recommended.scss */
  #sompo .recommended_ctr .recommended_inner h4 {
    margin: 0 auto 1rem;
    font-size: 120%;
  }
}

/* line 61, app/assets/stylesheets/sompocare/scss/recommended.scss */
#sompo .recommended_ctr .recommended_inner dl {
  font-size: 110%;
}

/* line 63, app/assets/stylesheets/sompocare/scss/recommended.scss */
#sompo .recommended_ctr .recommended_inner dl dt {
  font-weight: 600;
  margin-bottom: 1rem;
}

/* line 69, app/assets/stylesheets/sompocare/scss/recommended.scss */
#sompo .recommended_ctr .recommended_inner dl dd ul li {
  padding: .5rem;
  border-bottom: 1px dashed var(--col_jnr_white);
  letter-spacing: var(--main_letter_spacing);
}

/* line 74, app/assets/stylesheets/sompocare/scss/recommended.scss */
#sompo .recommended_ctr .recommended_inner dl dd ul li i {
  color: var(--col_yellow);
}

@media only screen and (max-width: 600px) {
  /* line 82, app/assets/stylesheets/sompocare/scss/recommended.scss */
  #sompo .recommended_ctr .recommended_inner dl {
    font-size: 100%;
  }
  /* line 88, app/assets/stylesheets/sompocare/scss/recommended.scss */
  #sompo .recommended_ctr .recommended_inner dl dd ul li {
    font-size: 90%;
    padding: .5rem 0;
    letter-spacing: normal;
  }
}

/* SUB CONTENTS
---------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/sompocare/scss/sub_contents.scss */
#sompo .sub_visual_ctr {
  padding: 8rem 0 0;
}

/* line 8, app/assets/stylesheets/sompocare/scss/sub_contents.scss */
#sompo .contents_ctr {
  max-width: 1080px;
  width: 100%;
}

/* line 12, app/assets/stylesheets/sompocare/scss/sub_contents.scss */
#sompo .contents_ctr .contents_inner {
  width: 100%;
}

/* FORM
---------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo input[type="text"]:disabled,
#sompo input[type="tel"]:disabled,
#sompo input[type="email"]:disabled,
#sompo textarea:disabled,
#sompo select:disabled {
  background: var(--col_jnr_white) !important;
}

/* line 12, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo input[type="text"],
#sompo input[type="tel"],
#sompo input[type="email"],
#sompo textarea {
  width: 100%;
  padding: 8px;
  border: solid 1px var(--col_jnr_white);
  background: var(--col_ornithogalum);
  border-radius: 5px;
  box-sizing: border-box;
}

/* line 23, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo select {
  border: 1px solid var(--col_jnr_white);
  padding: 0.6rem;
  border-radius: 3px;
  margin-right: 1rem;
  background: var(--col_ornithogalum);
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

/* line 32, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo .any::before, #sompo .required::before {
  color: #FFF;
  font-size: 80%;
  border-radius: 3px;
  display: inline-block;
  text-align: center;
  padding: 0 0.3rem 0.1rem;
  margin-right: var(--half_margin);
}

/* line 41, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo .required::before {
  content: "必須";
  background: var(--col_tomatored);
}

/* line 45, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo .any::before {
  content: "任意";
  background: var(--col_blue);
}

/* line 50, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo .certif_check_ctr {
  margin-top: 1rem;
  width: 100%;
}

/* line 54, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo .certif_check_ctr label {
  display: block;
  width: 49%;
}

@media only screen and (max-width: 900px) {
  /* line 54, app/assets/stylesheets/sompocare/scss/form.scss */
  #sompo .certif_check_ctr label {
    width: 100%;
  }
}

/* line 64, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo .certif_check_ctr,
#sompo .job_search_check_ctr {
  /* check box */
  display: flex;
  flex-wrap: wrap;
  gap: var(--half_margin);
}

/* line 71, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo .certif_check_ctr.active,
#sompo .job_search_check_ctr.active {
  display: flex;
  opacity: 1;
  transition: 0.3s;
}

/* line 77, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo .certif_check_ctr label,
#sompo .job_search_check_ctr label {
  cursor: pointer;
}

@media only screen and (max-width: 480px) {
  /* line 77, app/assets/stylesheets/sompocare/scss/form.scss */
  #sompo .certif_check_ctr label,
#sompo .job_search_check_ctr label {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* line 87, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo .certif_check_ctr input[type="checkbox"],
#sompo .job_search_check_ctr input[type="checkbox"] {
  display: none;
}

/* line 91, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo .certif_check_ctr label > span,
#sompo .job_search_check_ctr label > span {
  display: block;
  width: 100%;
  border-radius: 7px;
  background: var(--col_whitesmoke);
  position: relative;
  box-sizing: border-box;
  padding: .3rem 1rem .3rem 2rem;
}

/* line 100, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo .certif_check_ctr label > span:before,
#sompo .job_search_check_ctr label > span:before {
  /* check */
  background: white;
  border: 1px solid var(--col_jnr_white);
  content: "";
  display: block;
  height: 20px;
  left: 8px;
  margin-top: -8px;
  position: absolute;
  top: 45%;
  width: 20px;
}

/* line 113, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo .certif_check_ctr label > span:after,
#sompo .job_search_check_ctr label > span:after {
  /* check */
  border-right: 3px solid var(--main_black);
  border-bottom: 3px solid var(--main_black);
  content: "";
  display: block;
  height: 15px;
  left: 14px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 45%;
  transform: rotate(45deg);
  width: 8px;
}

/* line 129, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo .certif_check_ctr input[type="checkbox"]:checked + span,
#sompo .job_search_check_ctr input[type="checkbox"]:checked + span {
  background: var(--col_light_yellow);
}

/* line 132, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo .certif_check_ctr input[type="checkbox"]:checked + span:after,
#sompo .job_search_check_ctr input[type="checkbox"]:checked + span:after {
  opacity: 1;
}

/* line 140, app/assets/stylesheets/sompocare/scss/form.scss */
#sompo summary.details-btn-white {
  background: white !important;
  border: 1px solid var(--col_jnr_white);
}

/* SEARCH LIST
---------------------------------------------------------------------------- */
/* line 3, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo {
  /*  checkbox */
  /* thanks */
}

/* line 5, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .inquiryform_ctr {
  width: 100%;
  max-width: 1080px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 1rem;
}

/* line 14, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .inquiryform_ctr .thanks_ctr {
  margin-bottom: 2rem;
}

/* line 16, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .inquiryform_ctr .thanks_ctr p {
  margin-top: 1rem;
  text-align: center;
}

/* line 20, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .inquiryform_ctr .thanks_ctr img {
  max-width: 500px;
  width: 100%;
}

/* line 26, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .inquiryform_ctr .inquiryform_inner {
  width: 100%;
  padding: 0 1rem;
  margin-bottom: 4rem;
}

/* line 31, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .inquiryform_ctr .inquiryform_inner:last-child {
  margin-bottom: 0;
}

/* line 38, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .sex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--half_margin);
}

/* line 44, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .sex input {
  display: none;
}

/* line 48, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .sex input.man[type="radio"]:checked + label {
  color: var(--col_blue);
  border: 2px solid var(--col_blue);
  background-color: var(--col_light_blue);
}

/* line 54, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .sex input.woman[type="radio"]:checked + label {
  color: var(--col_tomatored);
  border: 2px solid var(--col_tomatored);
  background-color: var(--col_light_tomatored);
}

/* line 60, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .sex input.gender[type="radio"]:checked + label, #sompo .sex input.gender[type="radio"]:checked + label i {
  background: url(/assets/sompocare/gendercol-763b264c240084e46f71957baca7db25a5b8f983988ef95c1e8622bdea067acf.png) no-repeat;
  background-size: 100% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* line 68, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .sex input.gender[type="radio"]:checked + label {
  border: 2px solid var(--col_yellow);
}

/* line 74, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .sex label {
  color: var(--col_usuzumi);
  border: 2px solid var(--col_usuzumi);
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  padding: 5px 0px;
  width: calc(94% / 3);
  max-width: 120px;
  cursor: pointer;
}

/* line 92, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .status {
  font-size: 90%;
  margin-right: auto;
  padding: 0 var(--half_margin);
  display: flex;
  flex-wrap: wrap;
  gap: .2rem;
  margin-bottom: 1rem;
}

/* line 101, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .status .red {
  color: white;
  background: var(--col_tomatored);
  padding: 0 var(--half_margin);
}

/* line 106, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .status .red i {
  margin: 0 var(--half_margin);
}

/* line 114, app/assets/stylesheets/sompocare/scss/inquiryform_.scss */
#sompo .inquiryform_ctr .inquiryform_inner .job_details_tab table {
  margin-bottom: 2rem;
}

/* GUIDELINE
---------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/sompocare/scss/guideline.scss */
#sompo .guideline_ctr {
  margin: 2rem 1rem;
  text-align: center;
}

/* SWIPER
---------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/sompocare/scss/swiper.scss */
#sompo #support_swiper {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  /* arrow */
}

/* line 11, app/assets/stylesheets/sompocare/scss/swiper.scss */
#sompo #support_swiper .swiper_ctr .swiper-slide {
  width: 100%;
  height: 100%;
  text-align: center;
}

/* line 17, app/assets/stylesheets/sompocare/scss/swiper.scss */
#sompo #support_swiper .swiper_ctr .item img {
  width: 100%;
}

/* line 23, app/assets/stylesheets/sompocare/scss/swiper.scss */
#sompo #support_swiper .swiper-button-prev, #sompo #support_swiper .swiper-button-next {
  color: white;
}

@media only screen and (max-width: 600px) {
  /* line 32, app/assets/stylesheets/sompocare/scss/swiper.scss */
  #sompo #support_swiper {
    overflow-x: hidden;
  }
}

/* FOOTER
---------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/sompocare/scss/footer.scss */
#sompo footer {
  width: 100%;
  color: white;
  background: var(--main_black);
  text-align: center;
  padding: 3rem;
}

/* line 12, app/assets/stylesheets/sompocare/scss/footer.scss */
#sompo footer a {
  color: white;
  text-decoration: none;
}

/* line 16, app/assets/stylesheets/sompocare/scss/footer.scss */
#sompo footer a:hover {
  text-decoration: underline;
}

/* line 21, app/assets/stylesheets/sompocare/scss/footer.scss */
#sompo footer ul.menu {
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* line 29, app/assets/stylesheets/sompocare/scss/footer.scss */
#sompo footer ul.menu li {
  margin: 0;
  padding: 0 20px;
  border-right: 1px white solid;
}

/* line 34, app/assets/stylesheets/sompocare/scss/footer.scss */
#sompo footer ul.menu li:last-child {
  border: none;
}

/* line 40, app/assets/stylesheets/sompocare/scss/footer.scss */
#sompo footer .footer_banner_ctr {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  margin-bottom: 2rem;
}

/* line 49, app/assets/stylesheets/sompocare/scss/footer.scss */
#sompo footer .copyright {
  font-size: 80%;
}

@media only screen and (max-width: 599px) {
  /* line 56, app/assets/stylesheets/sompocare/scss/footer.scss */
  #sompo footer ul.menu {
    justify-content: flex-start;
  }
  /* line 59, app/assets/stylesheets/sompocare/scss/footer.scss */
  #sompo footer ul.menu li {
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    border: 0;
  }
}
/*


 */
/* line 1, node_modules/noty/lib/noty.css */
.noty_layout_mixin, #noty_layout__top, #noty_layout__topLeft, #noty_layout__topCenter, #noty_layout__topRight, #noty_layout__bottom, #noty_layout__bottomLeft, #noty_layout__bottomCenter, #noty_layout__bottomRight, #noty_layout__center, #noty_layout__centerLeft, #noty_layout__centerRight {
  position: fixed;
  margin: 0;
  padding: 0;
  z-index: 9999999;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0) scale(1, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  filter: blur(0);
  -webkit-filter: blur(0);
  max-width: 90%;
}

/* line 15, node_modules/noty/lib/noty.css */
#noty_layout__top {
  top: 0;
  left: 5%;
  width: 90%;
}

/* line 20, node_modules/noty/lib/noty.css */
#noty_layout__topLeft {
  top: 20px;
  left: 20px;
  width: 325px;
}

/* line 25, node_modules/noty/lib/noty.css */
#noty_layout__topCenter {
  top: 5%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1);
}

/* line 32, node_modules/noty/lib/noty.css */
#noty_layout__topRight {
  top: 20px;
  right: 20px;
  width: 325px;
}

/* line 37, node_modules/noty/lib/noty.css */
#noty_layout__bottom {
  bottom: 0;
  left: 5%;
  width: 90%;
}

/* line 42, node_modules/noty/lib/noty.css */
#noty_layout__bottomLeft {
  bottom: 20px;
  left: 20px;
  width: 325px;
}

/* line 47, node_modules/noty/lib/noty.css */
#noty_layout__bottomCenter {
  bottom: 5%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1);
}

/* line 54, node_modules/noty/lib/noty.css */
#noty_layout__bottomRight {
  bottom: 20px;
  right: 20px;
  width: 325px;
}

/* line 59, node_modules/noty/lib/noty.css */
#noty_layout__center {
  top: 50%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px), -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(calc(-50% - .5px), calc(-50% - .5px)) translateZ(0) scale(1, 1);
}

/* line 66, node_modules/noty/lib/noty.css */
#noty_layout__centerLeft {
  top: 50%;
  left: 20px;
  width: 325px;
  -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1);
}

/* line 73, node_modules/noty/lib/noty.css */
#noty_layout__centerRight {
  top: 50%;
  right: 20px;
  width: 325px;
  -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1);
}

/* line 80, node_modules/noty/lib/noty.css */
.noty_progressbar {
  display: none;
}

/* line 83, node_modules/noty/lib/noty.css */
.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #646464;
  opacity: 0.2;
  filter: alpha(opacity=10);
}

/* line 94, node_modules/noty/lib/noty.css */
.noty_bar {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, 0) scale(1, 1);
  transform: translate(0, 0) scale(1, 1);
  -webkit-font-smoothing: subpixel-antialiased;
  overflow: hidden;
}

/* line 102, node_modules/noty/lib/noty.css */
.noty_effects_open {
  opacity: 0;
  -webkit-transform: translate(50%);
  -ms-transform: translate(50%);
  transform: translate(50%);
  -webkit-animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/* line 112, node_modules/noty/lib/noty.css */
.noty_effects_close {
  -webkit-animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/* line 118, node_modules/noty/lib/noty.css */
.noty_fix_effects_height {
  -webkit-animation: noty_anim_height 75ms ease-out;
  animation: noty_anim_height 75ms ease-out;
}

/* line 122, node_modules/noty/lib/noty.css */
.noty_close_with_click {
  cursor: pointer;
}

/* line 125, node_modules/noty/lib/noty.css */
.noty_close_button {
  position: absolute;
  top: 2px;
  right: 2px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

/* line 140, node_modules/noty/lib/noty.css */
.noty_close_button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* line 143, node_modules/noty/lib/noty.css */
.noty_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 10000;
  opacity: .3;
  left: 0;
  top: 0;
}

/* line 153, node_modules/noty/lib/noty.css */
.noty_modal.noty_modal_open {
  opacity: 0;
  -webkit-animation: noty_modal_in .3s ease-out;
  animation: noty_modal_in .3s ease-out;
}

/* line 158, node_modules/noty/lib/noty.css */
.noty_modal.noty_modal_close {
  -webkit-animation: noty_modal_out .3s ease-out;
  animation: noty_modal_out .3s ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes noty_modal_in {
  100% {
    opacity: .3;
  }
}

@keyframes noty_modal_in {
  100% {
    opacity: .3;
  }
}

@-webkit-keyframes noty_modal_out {
  100% {
    opacity: 0;
  }
}

@keyframes noty_modal_out {
  100% {
    opacity: 0;
  }
}

@keyframes noty_modal_out {
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes noty_anim_in {
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}

@keyframes noty_anim_in {
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}

@-webkit-keyframes noty_anim_out {
  100% {
    -webkit-transform: translate(50%);
    transform: translate(50%);
    opacity: 0;
  }
}

@keyframes noty_anim_out {
  100% {
    -webkit-transform: translate(50%);
    transform: translate(50%);
    opacity: 0;
  }
}

@-webkit-keyframes noty_anim_height {
  100% {
    height: 0;
  }
}

@keyframes noty_anim_height {
  100% {
    height: 0;
  }
}

/*# sourceMappingURL=noty.css.map*/
/* line 1, node_modules/noty/lib/themes/sunset.css */
.noty_theme__sunset.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

/* line 6, node_modules/noty/lib/themes/sunset.css */
.noty_theme__sunset.noty_bar .noty_body {
  padding: 10px;
  font-size: 14px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

/* line 10, node_modules/noty/lib/themes/sunset.css */
.noty_theme__sunset.noty_bar .noty_buttons {
  padding: 10px;
}

/* line 13, node_modules/noty/lib/themes/sunset.css */
.noty_theme__sunset.noty_type__alert,
.noty_theme__sunset.noty_type__notification {
  background-color: #073B4C;
  color: #fff;
}

/* line 17, node_modules/noty/lib/themes/sunset.css */
.noty_theme__sunset.noty_type__alert .noty_progressbar,
.noty_theme__sunset.noty_type__notification .noty_progressbar {
  background-color: #fff;
}

/* line 21, node_modules/noty/lib/themes/sunset.css */
.noty_theme__sunset.noty_type__warning {
  background-color: #FFD166;
  color: #fff;
}

/* line 25, node_modules/noty/lib/themes/sunset.css */
.noty_theme__sunset.noty_type__error {
  background-color: #EF476F;
  color: #fff;
}

/* line 28, node_modules/noty/lib/themes/sunset.css */
.noty_theme__sunset.noty_type__error .noty_progressbar {
  opacity: .4;
}

/* line 31, node_modules/noty/lib/themes/sunset.css */
.noty_theme__sunset.noty_type__info,
.noty_theme__sunset.noty_type__information {
  background-color: #118AB2;
  color: #fff;
}

/* line 35, node_modules/noty/lib/themes/sunset.css */
.noty_theme__sunset.noty_type__info .noty_progressbar,
.noty_theme__sunset.noty_type__information .noty_progressbar {
  opacity: .6;
}

/* line 39, node_modules/noty/lib/themes/sunset.css */
.noty_theme__sunset.noty_type__success {
  background-color: #06D6A0;
  color: #fff;
}

/*# sourceMappingURL=sompocare.css-ae3b651f5a498a335ce3850f709cc981f8a706d3e2d1afd2c4b3a898a61ef374.map */
