@charset "UTF-8";
/* CSS Document */
body, button, input, select, option, textarea {
	font-family: 'Noto Sans JP', sans-serif;
}

/*
Noto Sans Japanese
Regular 400
Medium 500
SemiBold 600
Bold 700
*/

/*----------------------------------------------------
	Structure Module
----------------------------------------------------*/
html {
  /* overflow-y: scroll; */
}

body {
  margin: 0;
  padding: 0;
  color: #333333;
  /* text-align: center; */
  line-height: 1.65;
  letter-spacing: 1px;
  word-break: break-all;
  -ms-word-break: break-all;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;

	text-align: justify;
	text-justify: inter-ideograph;
	text-justify: inter-character;

	font-feature-settings: "palt" 1;
}

/*----------------------------------------------------
	Headings Module
----------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

/*----------------------------------------------------
	Phrasing Module
----------------------------------------------------*/
p {
  margin: 0;
  padding: 0;
}

cite, dfn, address, i, em {
  font-style: normal;
}

strong, em, b {
  font-weight: 600;
}

u {
  text-decoration: none;
}

abbr {
  border: 0 none;
}

mark {
  background-color: transparent;
}

q {
  quotes: none;
}

button {
  text-align: left;
  cursor: pointer;
}

input:focus, button:focus, select:focus, textarea:focus {
  outline: none;
}

/*----------------------------------------------------
	Hypertext Module
----------------------------------------------------*/
a {
  outline: none;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(152, 152, 152, .3);
}

a:link,
a:visited {
  color: #ff0000;
}

a:hover {
  text-decoration: underline;
}

a:active,
a:focus {
  background-color: transparent;
}

/*----------------------------------------------------
	Image Module
----------------------------------------------------*/
img {
  border: 0;
  vertical-align: bottom;
}

/*----------------------------------------------------
	Embedded Module
----------------------------------------------------*/
object, embed {
  outline: none;
}

/*----------------------------------------------------
	List Module
----------------------------------------------------*/
ul, ol, dl, dt, dd, li {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: none;
}

/*----------------------------------------------------
	Table Module
----------------------------------------------------*/
table {
  border-collapse: separate;
  border-spacing: 0;
}

th, td {
  font-weight: normal;
  vertical-align: top;
  text-align: left;
}

/*----------------------------------------------------
	Forms Module
----------------------------------------------------*/
form, button, input, select, option, textarea {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

textarea {
  width: 350px;
}

input {
  border: 0 none;
  border-radius: 0px;
}

button {
  background: none;
  border: 0 none;
  overflow: visible;
}

/*----------------------------------------------------
	HTML5 Reset
----------------------------------------------------*/
article, aside, figure, figcaption, dialog, details,
footer, header, menu, main, nav, section, summary {
  display: block;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}


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

  Optimization

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

/*  Body
--------------------------*/
body,
body *,
body *::before,
body *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  letter-spacing: 0px;
  /* font-size: 100%;
	font-size: 1rem;  */
	/* 10px */
}


button, input, select, option, textarea {
  border: 0 none;
  letter-spacing: 0px;
  border-radius: 0px;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
button:disabled, input:disabled, select:disabled, option:disabled, textarea:disabled {
  background-color: transparent;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: none;
  vertical-align: bottom;
}

img {
  -webkit-touch-callout: none;
	vertical-align: top;
	max-width: 100%;
	height: auto;
	/* width: 100%; */
}

a:hover {
  text-decoration: none;
}

i {
}

h1, h2, h3, h4 {
  font-size: 100%;
  font-weight: 400;
}

table {
  border-collapse: collapse;
}

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

  BaseColor

====================================================*/
/* テキスト
--------------------------*/
body {
  color: #4D4D4D;
  width: 100%;
}

button, input, select, option, textarea {
  color: #000;
}

input:-moz-placeholder {
  color: #bbbbbb;
}
input::-webkit-input-placeholder {
  color: #bbbbbb;
}

textarea:-moz-placeholder {
  color: #bbbbbb;
}
textarea::-webkit-input-placeholder {
  color: #bbbbbb;
}

/* リンク
--------------------------*/
a:link,
a:visited {
  color: #4D4D4D;
}

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

  Animation

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

@keyframes anim_opct0-1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


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

  layout[ALL]

====================================================*/
.pc {
	display: inline;
}
.sp {
	display: none;
}


.event_disable {
	pointer-events: none;
	user-select: none;
}
.opct_0 {
	opacity: 0;
}
a:hover {
	transition: all 300ms ease 0s;
}
.fadein {
	opacity: 0;
	transform: translateY(5%);
}
.fadein.view {
	opacity: 1;
	transform: translateY(0);
	transition: all 1200ms ease 500ms;
}

a:hover, button:hover {
  animation: animation .4s 1 linear;
}
@keyframes animation {
  50% {
	 opacity: .6;
  }
  100% {
	 opacity: .8;
  }
}

/*  Html
--------------------------*/
html {
	font-size: 1px;
}
body {
	background-color: #fff;
  font-size: 16rem;
}
#wrapper {
	overflow: hidden;
  background-color: #fff;
}
main {
  margin: 140rem auto 0;
  width: 100%;
}
section {
  width: 100%;
  max-width: 1100rem;
  margin: 0 auto;
  font-size: 16rem;
}

:where(:focus-visible,:target) {
    scroll-margin-block: 140rem;
}

@media screen and (max-width: 1280px) {
	html {
		font-size: calc(1 / 1280 * 100vw);
	}
	body {
	}
	#wrapper {
	}
}


@media screen and (max-width: 767px) {
	img {
		width: 100%;
	}
	.pc {
		display: none;
	}
	.sp {
		display: inline;
	}
	html {
		font-size: calc(1 / 767 * 100vw);
	}
	body {
    font-size: 32rem;
	}
  main {
    margin: 120rem auto 0;
  }
  section {
    max-width: 700rem;
    font-size: 32rem;
  }
}


/*  Header
--------------------------*/
header.nav {
  position: fixed;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 140rem;
  background: url("/ostec-room/images/header_bg_pc.webp") repeat-x;
  z-index: 3;
}
.nav_header {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  height: 90rem;
  max-width: 1520rem;
  margin: 0 auto;
}

.nav_logo {
  width: 600rem;
  text-decoration: none;
}
.nav_logo img {
  max-height: 90rem;
}
.nav_link {
  width: 680rem;
  display: flex;
  margin-right: 25px; /* nagano */
}
.nav_link ul.nav_link01 {
  display: flex;
  list-style-type: none;
  width: 323rem;
  padding: 20rem 0 15rem 20rem;
}
.nav_link ul.nav_link01 li {
  border-left: 1rem solid rgba(0, 0, 0, 0.16);
}
.nav_link ul.nav_link01 li:last-child {
  border-right: 1rem solid rgba(0, 0, 0, 0.16);
}
.nav_link ul.nav_link01 li a img {
  width: 150rem;
  height: 50rem;
}

.nav_link ul.nav_link02 {
  display: flex;
  list-style-type: none;
  padding: 10rem 15rem;
  gap: 0rem; /* nagano */
  
}
.nav_link ul.nav_link02 li:first-child a img {
  width: 180rem;
  height: 70rem;
}
.nav_link ul.nav_link02 li:last-child a img {
  width: 140rem;
  height: 60rem;
	margin-top:5px; /* nagano */
}

.nav_list-wrapper {
  width: 100%;
  background: #51AAAF;
  height: 50rem;
}
.nav_list {
  max-width: 1200rem;
  box-sizing: border-box;
  display: flex;
  margin: 0 auto;
  padding: 15rem 0;
  justify-content: space-between;
}
.nav_list-item {
  list-style: none;
  text-decoration: none;
  border-right: 1px solid #FFF;
  flex-grow: 1;
  text-align: center;
}
a.nav_list-link {
  color: #FFF!important;
  display: block;
  font-size: 20rem;
  line-height: 20rem;
  font-weight: 600;
  text-shadow: 2rem 2rem 1rem rgba(0, 0, 0, 0.16);
  text-decoration: none;
}
.nav_list-item:last-child {
  border-right: 0rem solid #FFF;
}

ul.nav_link03 {
  display: none;
}

.hum-menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  
  header.nav {
    height: 120rem;
    background: url("/ostec-room/images/header_bg_mb.webp");
    background-size: cover;
  }
  
  .nav_header {
    padding-right: 120rem;
  }
  
  .nav_logo {
    width: 240rem;
  }
  .nav_logo img {
    max-height: 120rem;
  }
  
  .nav_link {
    width: 366rem;
    height: 120rem;
    justify-content: flex-end;
  }
  .nav_link ul.nav_link01 {
    width: 100%;
    display: flex;
    list-style-type: none;
    padding: 25rem 0;
  }
  .nav_link ul.nav_link01 li {
    border-left: 2rem solid rgba(0, 0, 0, 0.16);
  }
  .nav_link ul.nav_link01 li:last-child {
    border-right: 2rem solid rgba(0, 0, 0, 0.16);
  }
  .nav_link ul.nav_link01 li a img {
    height: 70rem;
    width: 180rem;
    vertical-align: middle;
  }
  
  .nav_link ul.nav_link02 {
    display: none;
  }
  
  .hum-menu_list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    height: 800rem;
    margin: 0 auto;
    transform: translateX(100%);
    position: absolute;
    top: 120rem;
    background: #C2E1E3;
  }
  
  .nav_list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    transition: 0.3s;
    gap: 20rem;
    width: 100%;
    padding: 20rem;
  }
  .nav_list .nav_list-item {
    width: 100%;
    font-size: 30rem;
    background: #FFF;
    flex-grow: 0;
  }
  a.nav_list-link  {
    color: #4D4D4D!important;
    width: 100%;
    display: block;
    font-size: 30rem;
    line-height: 80rem;
    font-weight: 400;
    text-shadow: none;
    text-decoration: none;
  }

  #hamburger:checked ~ .hum-menu_list {
    transform: translateX(0%);
    transition: 0.3s;
  }
  
  ul.nav_link03 {
    display: flex;
    column-gap: 30rem;
    justify-content: center;
    padding: 0 50rem;
  }
  
}

.hum-menu_input {
  display: none;
}

.hum-menu_button {
  display: none;
}

@media screen and (max-width: 767px) {
  .hum-menu_button {
    position: fixed;
    top: 0rem;
    right: 0rem;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 11rem;
    height: 120rem;
    justify-content: center;
    width: 120rem;
    padding: 46rem 42rem;
  }
}

.hum-menu_button-mark {
  background-color: #000;
  display: block;
  height: 2rem;
  transition: 0.3s;
  width: 32rem;
}
.hum-menu_button-mark:nth-of-type(3) {
  width: 16rem;
}

@media screen and (max-width: 767px) {
  #hamburger:checked
    ~ .hum-menu_button
    .hum-menu_button-mark:nth-of-type(1) {
    transform: translate(8rem, 2rem) rotate(45deg);
    transform-origin: 0%;
  }
  #hamburger:checked
    ~ .hum-menu_button
    .hum-menu_button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .hum-menu_button
    .hum-menu_button-mark:nth-of-type(3) {
      transform: translate(8rem, -1rem) rotate(-45deg);
      width: 32rem;
      transform-origin: 0%;
  }
}

/*  Before Footer
--------------------------*/
.before_footer {
  width: 100%;
  max-width: 100%;
  padding: 70rem 0;
}
.before_footer01 {
  background: #F4FAD4;
}
.before_footer02 {
  
}
.before_footer03 {
  background: #C9DBE5;
}
.before_footer_inner {
  width: 100%;
  max-width: 1100rem;
  margin: 0 auto;
}

.before_footer h3 {
  color: #05315E;
  text-align: center;
  font-size: 21rem;
  font-weight: 600;
}

.footer_service01,
.footer_service02,
.footer_service03 {
  padding: 20rem 40rem 10rem;
  border-radius: 10rem;
  background: #FFF;
}
.footer_service01 {
  height: auto;
}
.footer_service02,
.footer_service03 {
  height: 230rem;
}
.footer_service03 {
  margin-top: 30rem;
}
#service h4 {
  font-size: 24rem;
  font-weight: 600;
  color: #05315E;
}
#service .footer_service01 h4 {
  text-align: center;
}
#service .footer_service01 img {
  margin: 10rem 0;
}
#service p {
  font-size: 16rem;
  line-height: 26rem;
  margin-bottom: 10rem;
}

.footer_service_0203 {
  display: flex;
  gap: 25rem;
}
.footer_service_0203 img {
  width: 80rem;
  height: 90rem;
}
.footer_service_0203txt {
  width: 335rem;
}

#service a.btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #FFF;
  color: #1771DA;
  font-size: 16rem;
  font-weight: 600;
  width: 100%;
  height: 60rem;
  border: 1rem solid #1771DA;
  border-radius: 10rem;
  text-align: center;
  text-decoration: none;
}
#service a.btn.mt-20 {
  margin-top: 20rem;
}
#service a.btn:hover {
  background: #1771DA;
  color: #FFF;
}

#service a.btn span.note {
  display: inline-block;
  font-size: 14rem;
}
#service p.note {
  font-size: 14rem;
  margin-top: 10rem;
  text-align: center;
}

.footer_apply01,
.footer_apply02,
.footer_apply03,
.footer_apply04 {
  padding: 20rem 40rem 20rem;
  border-radius: 10rem;
  background: #FFF;
  width: 100%;
  max-width: 340rem;
}
.footer_apply01,
.footer_apply02 {
  height: 508rem;
}
.footer_apply03 {
  height: 320rem;
}
.footer_apply04 {
  height: 345rem;
}
.footer_apply .arrow {
  width: 40rem;
  height: 320rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_apply .arrow2 {
  height: 45rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_apply .arrow img,
.footer_apply .arrow2 img {
  width: 40rem;
  height: 40rem;
}

#apply h4 {
  font-size: 18rem;
  font-weight: 600;
  text-align: center;
  margin: 0rem auto 20rem;
}

.footer_apply {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  height: 795rem;
  margin-top: 40rem;
}
.footer_apply p {
  font-size: 16rem;
  line-height: 26rem;
}
.footer_apply a.btn,
.footer_apply button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  background: #FFF;
  color: #1771DA;
  font-size: 24rem;
  font-weight: 600;
  width: 100%;
  height: 60rem;
  border: 1rem solid #1771DA;
  border-radius: 10rem;
  text-align: center;
  text-decoration: none;
  margin-top: 20rem;
}
.footer_apply a.btn:hover {
  background: #1771DA;
  color: #FFF;
}

.footer_apply .pdfxls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20rem;
  background: #FFF;
  color: #1771DA;
  font-size: 14rem;
  line-height: 20rem;
  width: 100%;
  height: 110rem;
  border: 1rem solid #1771DA;
  border-radius: 10rem;
  text-align: center;
  text-decoration: none;
  margin-top: 20rem;
}
.footer_apply .pdfxls img {
  width: 111rem;
  height: 80rem;
}
.footer_apply .pdfxls .link {
  text-align: left;
}
.footer_apply .pdfxls .link a {
  display: block;
  font-size: 16rem;
  line-height: 20rem;
  color: #1771DA;
  text-decoration: underline;
  margin-top: 5rem;
}
.footer_apply .pdfxls .link a i.fa-file-pdf {
  color: #FF8D8D;
  text-decoration: none;
}
.footer_apply .pdfxls .link a i.fa-file-excel {
  color: #319F00;
  text-decoration: none;
}
.footer_cancel {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20rem 40rem 20rem;
  border-radius: 10rem;
  background: #FFF;
  width: 100%;
  max-width: 720rem;
  height: 243rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
#apply .footer_cancel h4 {
  text-align: left;
}
.footer_cancel_l {
  width: 255rem;
  text-align: left;
}
.footer_cancel_r {
  width: 366rem;
}
.footer_cancel_r table{
  font-size: 14rem;
  text-align: left;
  border-bottom: 1rem solid #D1D1D1;
  border-right: 1rem solid #D1D1D1;
}
.footer_cancel_r table td {
  padding: 5rem 10rem;
  border-top: 1rem solid #D1D1D1;
  border-left: 1rem solid #D1D1D1;
}
.footer_cancel_r .note {
  font-size: 14rem;
  line-height: 24rem;
  margin-top: 10rem;
}
.footer_btn {
  display: flex;
  justify-content: space-between;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 340rem;
  height: 50rem;
}
.footer_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
  color: #1771DA;
  font-size: 16rem;
  font-weight: 600;
  width: 100%;
  height: 48rem;
  border: 1rem solid #1771DA;
  border-radius: 10rem;
  text-align: center;
  text-decoration: none;
}
.footer_btn a:hover {
  background: #1771DA;
  color: #FFF;
}
.footer_btn a i.fa-file-pdf {
  color: #FF8D8D;
}

@media screen and (max-width: 767px) {
  .before_footer {
    padding: 70rem 0;
  }
  .before_footer_inner {
    max-width: 700rem;
  }
  .before_footer h3 {
    font-size: 40rem;
  }

  .footer_service01,
  .footer_service02,
  .footer_service03 {
    padding: 60rem 30rem 40rem;
    border-radius: 20rem;
  }
  .footer_service02,
  .footer_service03 {
    height: auto;
    margin-top: 60rem;
  }
  #service h4 {
    font-size: 48rem;
    text-align: center;
    margin-bottom: 20rem;
  }
  #service .footer_service02 h4,
  #service .footer_service03 h4 {
    display: none;
  }
  #service .footer_service02 h4.sp,
  #service .footer_service03 h4.sp {
    display: block;
    text-align: center;
  }

  #service .footer_service01 img {
    margin: 20rem 0;
  }
  #service p {
    font-size: 32rem;
    line-height: 40rem;
    margin-bottom: 10rem;
  }

  .footer_service_0203 {
    display: flex;
    gap: 36rem;
  }
  .footer_service_0203 img {
    width: 128rem;
    height: 144rem;
  }
  .footer_service_0203txt {
    width: 456rem;
  }

  #service a.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFF;
    color: #1771DA;
    font-size: 32rem;
    font-weight: 600;
    width: 100%;
    height: 160rem;
    border: 2rem solid #1771DA;
    border-radius: 20rem;
    text-align: center;
    text-decoration: none;
    margin-top: 40rem
  }
  #service a.btn.mt-20 {
    margin-top: 40rem;
  }

  #service a.btn span.note {
    display: block;
    font-size: 28rem;
  }
  #service p.note {
    font-size: 28rem;
    margin-top: 20rem;
  }

  .footer_apply01,
  .footer_apply02,
  .footer_apply03,
  .footer_apply04 {
    padding: 40rem 60rem 60rem;
    border-radius: 20rem;
    background: #FFF;
    width: 100%;
    max-width: 700rem;
  }
  .footer_apply01,
  .footer_apply02,
  .footer_apply03,
  .footer_apply04 {
    height: auto;
  }
  .footer_apply .arrow ,
  .footer_apply .arrow2 {
    height: 80rem;
    width: 100%;
  }
  .footer_apply .arrow img,
  .footer_apply .arrow2 img {
    width: 80rem;
    height: 80rem;
  }
  #apply h4 {
    font-size: 36rem;
    margin-bottom: 40rem;
  }

  .footer_apply {
    margin: 40rem auto 40rem;
    height: auto;
  }
  .footer_apply p {
    font-size: 32rem;
    line-height: 48rem;
  }
  .footer_apply a.btn,
  .footer_apply button {
    gap: 20rem;
    font-size: 42rem;
    height: 110rem;
    border: 2rem solid #1771DA;
    border-radius: 20rem;
    margin-top: 40rem;
  }

  .footer_apply .pdfxls {
    font-size: 28rem;
    gap: 40rem;
    line-height: 40rem;
    height: 220rem;
    border: 2rem solid #1771DA;
    border-radius: 20rem;
    margin-top: 20rem;
  }
  .footer_apply .pdfxls img {
    width: 222rem;
    height: 160rem;
  }
  .footer_apply .pdfxls .link a {
    display: block;
    font-size: 32rem;
    line-height: 40rem;
    margin-top: 10rem;
  }
  .footer_cancel {
    display: block;
    padding: 40rem 60rem 60rem;
    border-radius: 20rem;
    width: 100%;
    max-width: 700rem;
    height: auto;
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 80rem;
  }
  #apply .footer_cancel h4 {
    text-align: center;
  }
  .footer_cancel_l {
    width: 100%;
    text-align: left;
  }
  .footer_cancel_r {
    width: 100%;
  }
  .footer_cancel_r table{
    font-size: 28rem;
    text-align: left;
    border-bottom: 2rem solid #D1D1D1;
    border-right: 2rem solid #D1D1D1;
  }
  .footer_cancel_r table td {
    padding: 10rem 20rem;
    border-top: 2rem solid #D1D1D1;
    border-left: 2rem solid #D1D1D1;
  }
  .footer_cancel_r .note {
    font-size: 28rem;
    line-height: 40rem;
    margin-top: 20rem;
  }
  .footer_btn {
    margin-top: 80rem;
    display: flex;
    justify-content: space-between;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
  }
  .footer_btn a {
    font-size: 32rem;
    font-weight: 600;
    width: 100%;
    height: 92rem;
    border: 2rem solid #1771DA;
    border-radius: 20rem;
  }

}

/*  Footer
--------------------------*/

footer{
	background: #52639D;
	color: #fff;
	display: block;
	text-align: center;
	padding: 30rem 0 20rem;
}
.footer_inner {
  text-align: center;
  width: 100%;
  max-width: 1100rem;
  margin: 0 auto;
  position: relative;
}
.footer_inner img {
  display: inline;
  width: 240rem;
}
.footer_inner .totop {
  position: absolute;
  background-image: url("/ostec-room/images/totop.webp");
  background-repeat: no-repeat;
  background-size: contain;
  height: 78rem;
  width: 78rem;
  top: -66rem;
  right: 60rem;
}

.footer_inner .fmenu1 {
  display: flex;
  justify-content: center;
  margin: 30px auto;
  column-gap: 2.5em;
}
.footer_inner .fmenu1 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2.5em;
}
.footer_inner .fmenu1 ul li {
  font-size: 17rem;
  line-height: 20.5rem;
  position: relative;
  padding-left: 1.2em;
}

.footer_inner .fmenu1 ul li::before {
  content: '';
  height: 15rem;
  width: 15rem;
  display: block;
  background-image: url("/ostec-room/images/4dots.svg");
  background-size: contain;
  background-repeat:no-repeat;
  position:absolute;
  top: 3rem;
  left: 0;
}

.footer_inner .fmenu1 form {
  
}

.footer_inner ul.fmenu2 {
  display: flex;
  justify-content: center;
}
.footer_inner ul.fmenu2 li {
  padding: 0 1em;
  border-left: 1rem solid #FFF;
  font-size: 12rem;
  line-height: 16rem;
}

.footer_inner a {
  color: #FFF;
  text-decoration: none;
}
.footer_inner ul.fmenu2 li:last-of-type {
  border-right: 1rem solid #FFF;
}

.footer_inner p.copy {
  font-size: 12rem;
  margin-top: 10rem;
}
.fmenu3 {
  display: flex;
  justify-content: center;
  margin-top: 20rem;
}
.fmenu3 ul {
  display: flex;
  justify-content: center;
  column-gap: 0rem;
  max-width: 325rem;
}
.fmenu3 ul li {
  width: 50%;
}
.fmenu3 ul li:first-child {
  width: 50%;
  border-right: 1rem solid #FFF;
}
.fmenu4 {
  display: flex;
  justify-content: center;
  margin-top: 20rem;
}
.fmenu4 ul {
  display: flex;
  justify-content: center;
  column-gap: 20rem;
  margin-top: 20rem;
  margin-bottom: 30rem;
  max-width: 325rem;
}

@media screen and (max-width:768px) {
  
  .footer_inner img {
    display: inline;
    width: 480rem;
  }
  .footer_inner .totop {
    top: -66rem;
    right: 20rem;
  }
  .footer_inner .fmenu1 {
    display: block;
  }
  .footer_inner .fmenu1 ul {
    margin-top: 80rem;
    margin-bottom: 80rem;
  }
  .footer_inner .fmenu1 ul li {
    font-size: 32rem;
    line-height: 42rem;
  }
  .footer_inner .fmenu1 ul li::before {
    content: '';
    height: 30rem;
    width: 30rem;
    display: block;
    background-image: url("/ostec-room/images/4dots.svg");
    background-size: contain;
    background-repeat:no-repeat;
    position:absolute;
    top: 8rem;
    left: 0;
  }
  
  .footer_inner ul.fmenu2 {
    display: block;
    width: 400rem;
    margin: 0 auto;
  }
  .footer_inner ul.fmenu2 li {
    border-right: 1rem solid #FFF;
    font-size: 24rem;
    line-height: 32rem;
    margin-bottom: 20rem;
  }
  .footer_inner p.copy {
    font-size: 24rem;
    margin-top: 20rem;
  }

  .fmenu3 {
    margin-top: 40rem;
  }
  .fmenu3 ul {
    max-width: 612rem;
  }
  .fmenu4 {
    margin-top: 40rem;
    margin-bottom: 60rem;
  }
  .fmenu4 ul {
    max-width: 612rem;
  }
}


/*  Top
--------------------------*/

section.mv {
  width: 100%;
  max-width: 100%;
  height: 810px;
  background-image: url("/ostec-room/images/top_mv_pc.webp");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}
.mv_inner {
  width: 100%;
  max-width: 1100rem;
  margin: 0 auto;
  padding-top: 630rem;
  text-align: center;
  position: relative;
}
.mv_inner .btn,
.room .btn {
  display: inline-block;
  background: #1771DA;
  color: #FFF;
  font-size: 28rem;
  font-weight: 600;
  line-height: 80rem;
  width: 600rem;
  border-radius: 10rem;
}

section.news {
  width: 100%;
  max-width: 1100rem;
  margin: 0 auto 50rem;
  padding: 0;
}

section.news h3 {
  font-size: 13rem;
  line-height: 30rem;
  width: 148rem;
  text-align: center;
  color: #FFF;
  background: #51AAAF;
  margin: 0 auto 0;
}

section.news .btn {
  display: block;
  font-size: 13rem;
  line-height: 30rem;
  width: 148rem;
  text-align: center;
  color: #5A9DED;
  background: #FFF;
  border: 1rem solid #5A9DED;
  border-radius: 4rem;
  margin: 0 auto 0;
}
section.news .btn:hover {
  color: #FFF;
  background: #5A9DED;
}


section.recommend {
  width: 100%;
  max-width: 100%;
}
section.recommend .recommend_inner {
  max-width: 1100rem;
  margin: 0 auto;
  padding: 60rem 0 80rem;
  text-align: center;
}
section.recommend p {
  font-size: 21rem;
  line-height: 36rem;
  margin-bottom: 30rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.recommend p img {
  width: 105rem;
  margin-right: 5rem;
}

.recommend .swiper-wrapper {
  justify-content: center;
}

.recommend .swiper-slide{
  
}
.recommend .swiper-slide img {
  width: 100%;
  aspect-ratio: 260/195;
  object-fit: cover;
}

.recommend .swiper-slide h3 {
  position: relative;
  width: 100%;
  height: 35rem;
  text-align: left;
  padding-left: 50rem;
  font-size: 16rem;
  line-height: 35rem;
  font-weight: 600;
  color: #05315E;
  background-image: linear-gradient(
    90deg, 
    #87CFD3 0 45rem, 
    #CAE8EA 45rem
  );
  background-repeat: no-repeat;
  background-position: bottom;
  margin-bottom: 0;
}
.recommend .swiper-slide h3 span.floor {
  position: absolute;
  display: block;
  font-size: 18rem;
  width: 45rem;
  color: #FFF;
  text-align: center;
  top: 0;
  left: 0;
}
.recommend .swiper-slide h3 span.kai {
  font-size: 12rem;
}
.recommend .swiper-slide h3 span.area {
  font-size: 14rem;
  position: absolute;
  right: 10rem;
}

section.room {
  width: 100%;
  max-width: 100%;
  background: #F4FAD4;
}
section.room .room_inner {
  width: 100%;
  max-width: 1100rem;
  margin: 0 auto;
  padding: 60rem 0 80rem;
  text-align: center;
}
section.room h3 {
  color: #05315E;
  font-size: 21rem;
  line-height: 36rem;
  margin-bottom: 50rem;
}
section.room ul.tax {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 20rem;
  margin-bottom: 40rem;
}
section.room ul.tax li {
  font-size: 14rem;
  line-height: 37rem;
  padding: 0 2em;
  margin-bottom: 30rem;
  background: #FFF;
  border: 1rem solid #E6E6E6;
}

section#qanda {
  width: 100%;
  max-width: 1100rem;
  background: #FFF;
}
section#qanda ul {
  width: 100%;
  list-style: none;
  margin:  45rem auto 0 auto;
  border-top: #D1D1D1 1rem solid;
}
section#qanda ul li {
  padding: 30rem 40rem;
  background-color: #fff;
  cursor: pointer;
  box-sizing: border-box;
  font-size: 21rem;
  line-height: 32rem;
  border-bottom: #D1D1D1 1rem solid;
}
.qanda_q {
  position: relative;
  padding-right: 35rem;
  padding-left: 50rem;
  font-weight: 400;
}
.qanda_q:before {
  content: "Q:";
  position: absolute;
  left: 20rem;
  color: #FF3838;
}
.qanda_q:after {
  content: "";
  position: absolute;
  right: 20rem;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 12rem;
  height: 12rem;
  border-top: solid 3rem #959EA7;
  border-right: solid 3rem #959EA7;
  transform: rotate(135deg);
}
.qanda_q.arrow:after {
  transform: rotate(-45deg);
  top: 45%;
}
.qanda_a {
  position: relative;
  display: none;
  padding: 30rem 20rem 10rem 50rem;
}
.qanda_a:before {
  content: "A:";
  position: absolute;
  left: 23rem;
  color: #1771DA;
}
.qanda_a p.note {
  position: relative;
  font-size: 14rem;
  line-height: 24rem;
  padding: 30rem 20rem 10rem 20rem;
}
.qanda_a p.note:before {
  content: "※";
  position: absolute;
  left: 0rem;
}

ul.pricepack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10rem;
}
ul.pricepack li {
  width: 210rem;
  border: 1rem solid #E5E5E5;
  border-radius: 10rem;
  background: #FFFFFF;
  padding: 14rem;
}
ul.pricepack li:nth-child(2n) {
  background: #F7F8FA;
}
ul.pricepack li h4 {
  font-size: 16rem;
  font-weight: 600;
  line-height: 22rem;
  height: 66rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 10rem;
}
ul.pricepack li p {
  font-size: 16rem;
  line-height: 26rem;
  margin-top: 10rem;
}

#pricepack p.header {
  text-align: center;
  font-size: 14rem;
  line-height: 20rem;
  margin: 20rem 0;
}
#pricepack .btn {
  display: block;
  background: #FFF;
  color: #1771DA;
  font-size: 16rem;
  font-weight: 600;
  line-height: 55rem;
  width: 340rem;
  border: 1rem solid #1771DA;
  border-radius: 10rem;
  margin: 20rem auto 0;
  text-align: center;
}
#pricepack .btn i {
  font-size: 21rem;
  color: #FF8D8D;
  margin-left: 10rem;
}
#pricepack .btn:hover {
  background: #1771DA;
  color: #FFF;
}

.ul_option {
  display: flex;
  justify-content: center;
  margin-top: 20rem;
}
.ul_option ul li {
  font-size: 14rem;
  line-height: 24rem;
  padding-left: 1.5em;
  text-indent: -1em;
}
.ul_option ul li::before {
  content: "※";
  font-size: 14rem;
  line-height: 24rem;
}

@media screen and (max-width:1520px) {
  .mv {
    background-size: cover;
  }
}
@media screen and (max-width:1280px) {
  section.mv {
    height: 810rem;
    background-size: contain;
    background-image: url("/ostec-room/images/top_mv_pc2.webp");
  }
}
@media screen and (max-width:768px) {
  section.mv {
    height: 1781rem;
    background-image: url("/ostec-room/images/top_mv_mb.webp");
  }
  .mv_inner {
    max-width: 700rem;
    padding-top: 1460rem;
  }
  .mv_inner .btn,
  .room .btn {
    font-size: 50rem;
    font-weight: 600;
    line-height: 160rem;
    width: 700rem;
    border-radius: 20rem;
  }

  section.news {
    width: 100%;
    max-width: 700rem;
    margin: 0 auto 50rem;
    padding: 0;
  }
  
  section.news h3 {
    font-size: 24rem;
    line-height: 60rem;
    width: 300rem;
  }
  section.news .btn {
    font-size: 24rem;
    line-height: 60rem;
    width: 300rem;
  }

  section.recommend .recommend_inner {
    max-width: 100%;
  }
  section.recommend p {
    font-size: 30rem;
    line-height: 45rem;
    margin-bottom: 50rem;
    flex-direction: column;
  }
  section.recommend p img {
    width: 190rem;
    margin-right: 0;
    margin-bottom: 10rem;
  }

  .recommend .swiper-wrapper {
    justify-content: unset;
  }

  .recommend .swiper-slide h3 {
    height: 70rem;
    padding-left: 100rem;
    font-size: 32rem;
    line-height: 70rem;
    background-image: linear-gradient(
      90deg, 
      #87CFD3 0 90rem, 
      #CAE8EA 90rem
    );
  }
  .recommend .swiper-slide h3 span.floor {
    font-size: 36rem;
    width: 90rem;
  }
  .recommend .swiper-slide h3 span.kai {
    font-size: 24rem;
  }
  .recommend .swiper-slide h3 span.area {
    font-size: 28rem;
    right: 20rem;
  }

  section.room .room_inner {
    width: 100%;
    max-width: 700rem;
    margin: 0 auto;
    padding: 60rem 0 80rem;
    text-align: center;
  }
  section.room h3 {
    color: #05315E;
    font-size: 40rem;
    line-height: 66rem;
    margin-bottom: 50rem;
  }
  section.room ul.tax {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    justify-content: left;
    column-gap: 20rem;
    margin-bottom: 40rem;
  }
  section.room ul.tax li {
    font-size: 28rem;
    line-height: 66rem;
    padding: 0 2em;
    margin-bottom: 30rem;
    background: #FFF;
    border: 2rem solid #E6E6E6;
  }


  section#qanda {
    width: 100%;
    max-width: 700rem;
    background: #FFF;
  }
  section#qanda ul {
    width: 100%;
    list-style: none;
    margin:  80rem auto 0 auto;
    border-top: #D1D1D1 2rem solid;
  }
  section#qanda ul li {
    padding: 50rem 30rem;
    background-color: #fff;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 32rem;
    line-height: 48rem;
    border-bottom: #D1D1D1 1rem solid;
  }
  .qanda_q {
    position: relative;
    padding-right: 35rem;
    padding-left: 50rem;
    font-weight: 400;
  }
  .qanda_q:before {
    content: "Q:";
    position: absolute;
    left: 0rem;
    color: #FF3838;
  }
  .qanda_q:after {
    content: "";
    position: absolute;
    right: 0rem;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 20rem;
    height: 20rem;
    border-top: solid 6rem #959EA7;
    border-right: solid 6rem #959EA7;
    transform: rotate(135deg);
  }
  .qanda_q.arrow:after {
    transform: rotate(-45deg);
    top: 45%;
  }
  .qanda_a {
    position: relative;
    display: none;
    padding: 50rem 20rem 0rem 50rem;
  }
  .qanda_a:before {
    content: "A:";
    position: absolute;
    left: 3rem;
    color: #1771DA;
  }
  .qanda_a p.note {
    position: relative;
    font-size: 24rem;
    line-height: 32rem;
    padding: 30rem 20rem 10rem 20rem;
  }
  .qanda_a p.note:before {
    content: "※";
    position: absolute;
    left: 0rem;
  }

  ul.pricepack {
    gap: 20rem;
  }
  ul.pricepack li {
    width: 338rem;
    border-radius: 20rem;
    padding: 20rem;
    border: 2rem solid #E5E5E5;
  }
  ul.pricepack li h4 {
    font-size: 32rem;
    line-height: 44rem;
    height: 132rem;
    margin-bottom: 20rem;
  }
  ul.pricepack li p {
    font-size: 32rem;
    line-height: 48rem;
    margin-top: 20rem;
  }
  ul.pricepack li:nth-child(2n) {
    background: #FFF;
  }
  ul.pricepack li:nth-child(4n+2) {
    background: #F7F8FA;
  }
  ul.pricepack li:nth-child(4n+3) {
    background: #F7F8FA;
  }

  #pricepack p.header {
    text-align: center;
    font-size: 24rem;
    line-height: 40rem;
    margin: 40rem 0;
  }
  #pricepack .btn {
    font-size: 32rem;
    font-weight: 600;
    line-height: 90rem;
    width: 700rem;
    border: 2rem solid #1771DA;
    border-radius: 20rem;
    margin: 40rem auto 0;
  }
  #pricepack .btn i {
    font-size: 42rem;
    color: #FF8D8D;
    margin-left: 20rem;
  }
  #pricepack .btn:hover {
    background: #1771DA;
    color: #FFF;
  }
  
  .ul_option {
    display: flex;
    justify-content: center;
    margin-top: 40rem;
  }
  .ul_option ul li {
    font-size: 28rem;
    line-height: 40rem;
    padding-left: 1.5em;
  }
  .ul_option ul li::before {
    content: "※";
    font-size: 28rem;
    line-height: 40rem;
  }
}

/*  Entry
--------------------------*/

.entry-content {
  padding: 50rem 0 70rem;
  position: relative;
}
.entry-header h1,
.entry-header h2 {
  position: relative;
  width: 100%;
  height: 50rem;
  text-align: center;
  font-size: 28rem;
  line-height: 28rem;
  font-weight: 600;
  color: #51AAAF;
  background-image: linear-gradient(
    90deg, 
    #51AAAF 0 8%, 
    #F4FAD4 8%
  );
  background-repeat: no-repeat;
  background-size: 100% 5px;
  background-position: bottom;
  margin-bottom: 0;
}
.entry-header .goback {
  position: absolute;
  font-size: 16rem;
  height: 20rem;
  letter-spacing: .2em;
  top: 60rem;
}
.entry-header .addlink {
  position: absolute;
  top: 60rem;
  right: 0;
}
.entry-header .addlink ul {
  font-size: 16rem;
  height: 20rem;
  display: flex;
  padding: 0;
  border-right: 1rem solid #4D4D4D;
}
.entry-header .addlink ul li {
  line-height: 20rem;
  padding: 0 1em;
  border-left: 1rem solid #4D4D4D;
}
.entry-header .addlink ul li a.active {
  color: #CCCCCC;
}

.entry-content_inner {
  width: 1100rem; /* nagano */
  margin: 0 auto 50rem auto;
}
.entry-content_inner p {
  font-size: 18rem;
  line-height: 2em;
  margin-bottom: 2em;
}


@media screen and (max-width:768px) {
  .entry-content {
    padding-top: 100rem;
  }
  .entry-header h1,
  .entry-header h2 {
    width: 100%;
    height: 160rem;
    text-align: center;
    font-size: 42rem;
    line-height: 42rem;
    font-weight: 600;
    color: #51AAAF;
    background-image: linear-gradient(
      90deg, 
      #51AAAF 0 20%, 
      #F4FAD4 20%
    );
    background-repeat: no-repeat;
    background-size: 100% 5px;
    background-position: bottom;
  }
  .entry-header .goback {
    position: absolute;
    font-size: 24rem;
    line-height:  40rem;
    letter-spacing: .2em;
    top: 195rem;
    left: 20rem;
  }
  .entry-header a.goback {

  }
  .entry-header .addlink {
    top: 205rem;
    right: 10rem;
  }
  .entry-header .addlink ul {
    display: flex;
    font-size: 24rem;
    height: 20rem;
    padding: 0;
    border-right: 2rem solid #4D4D4D;
  }
  .entry-header .addlink ul li {
    line-height: 20rem;
    padding: 0 1em;
    border-left: 2rem solid #4D4D4D;
  }
  .entry-header .addlink ul li a.active {
    color: #CCCCCC;
  }

  .entry-content_inner {
    width: 100%; /* nagano */
    margin: 0 auto 50rem auto;
  }
  .entry-content_inner p {
    font-size: 28rem;
    line-height: 2em;
  }
  

}

.wp-block-columns.is-layout-flex {
  margin-bottom: 2em;
}

.content_flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100rem;
  column-gap: 80rem;
  margin-bottom: 40rem;
}
.content_flex100 {
  width: 100%;
  margin-bottom: 40rem;
}
.content_flex50 {
  width: calc(50% - 40rem);
  margin-bottom: 40rem;
}

@media screen and (max-width:768px) {
  .content_flex {
    display: block;
  }
  .content_flex100 {
    width: 100%;
  }
  .content_flex50 {
    width: 100%;
  }
}

/*  Room Single
--------------------------*/

.room-content {
  padding: 50rem 0 70rem;
  position: relative;
}
.room-header h2 {
  position: relative;
  width: 100%;
  height: 65rem;
  text-align: center;
  font-size: 28rem;
  line-height: 28rem;
  font-weight: 600;
  color: #51AAAF;
  margin-bottom: 0;
}

.room-header h1 {
  position: relative;
  width: 100%;
  height: 70rem;
  text-align: left;
  padding-left: 100rem;
  font-size: 24rem;
  line-height: 70rem;
  font-weight: 600;
  color: #05315E;
  background-image: linear-gradient(
    90deg, 
    #51AAAF 0 75rem, 
    #F4FAD4 75rem
  );
  background-repeat: no-repeat;
  background-position: bottom;
  margin-bottom: 0;
}
.room-header h1 span.floor {
  position: absolute;
  display: block;
  width: 75rem;
  color: #FFF;
  text-align: center;
  top: 0;
  left: 0;
}
.room-header h1 span.kai {
  font-size: 16rem;
}

.room-header .goback {
  position: absolute;
  font-size: 16rem;
  height: 20rem;
  letter-spacing: .2em;
  top: 60rem;
}
.room-header .addlink {
  position: absolute;
  top: 60rem;
  right: 0;
}
.room-header .addlink ul {
  font-size: 16rem;
  height: 20rem;
  display: flex;
  padding: 0;
  border-right: 1rem solid #4D4D4D;
}
.room-header .addlink ul li {
  line-height: 20rem;
  padding: 0 1em;
  border-left: 1rem solid #4D4D4D;
}
.room-header .addlink ul li a.active {
  color: #CCCCCC;
}

.room-header .eicon {
  position: absolute;
  top: 140rem;
  right: 20rem;
}
.room-header .eicon ul {
  display: flex;
  column-gap: 10rem;
  height: 20rem;
}
.room-header .eicon ul li {
  color: #FFF;
  font-size: 13rem;
  font-weight: 600;
  line-height: 20rem;
  background: #4D4D4D;
  border-radius: 5rem;
  display: flex;
  padding: 0 1em;
}
.room-header .eicon ul li.wifi {
  background: #62D1FA;
}
.room-header .eicon ul li.lan {
  background: #7DD57E;
}
.room-header .eicon ul li.projector {
  background: #F0B3B3;
}

.room_flex {
  display: flex;
  width: 100%;
  max-width: 1100rem;
  column-gap: 80rem;
  margin-bottom: 40rem;
}
.room_flex_photo {
  width: 500rem;
}
.room_flex_info {
  width: 500rem;
}
.room_flex h4 {
  font-size: 18rem;
  font-weight: 600;
  margin-bottom: 10rem;
  color: #05315E;
  margin-top: 20rem;
}

.room_flex p.intro {
  font-size: 18rem;
  margin-top: 20rem;
}

.room_flex table.capacity {
  border-bottom: 1rem solid #BABABA;
  border-right: 1rem solid #BABABA;
}

.room_flex p {
  font-size: 16rem;
  line-height: 1.75em;
}

.room_flex table.capacity th,
.room_flex table.capacity td {
  border-top: 1rem solid #BABABA;
  border-left: 1rem solid #BABABA;
  text-align: center;
}

.room_flex table.capacity th {
  font-size: 13rem;
  width: calc(100% / 6)
}
.room_flex table.capacity td {
  font-size: 24rem;
  font-weight: 600;
}
.room_flex table.capacity td span {
  font-size: 16rem;
}

.room_flex ul.use {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  column-gap: 20rem;
  margin-bottom: 40rem;
}
.room_flex ul.use li {
  font-size: 14rem;
  line-height: 37rem;
  padding: 0 2em;
  margin-bottom: 20rem;
  background: #FFF;
  border: 2rem solid #E6E6E6;
}

.room_flex .mySwiper {
}
.room_flex .mySwiper2 {
  margin-top: 30rem;
  margin-bottom: 10rem;
}

.room_flex table.room_equip {
  border-bottom: 1rem solid #BABABA;
  border-right: 1rem solid #BABABA;
}
.room_flex table.room_equip th,
.room_flex table.room_equip td {
  border-top: 1rem solid #BABABA;
  border-left: 1rem solid #BABABA;
  text-align: left;
  padding: 5rem;
}
.room_flex table.room_equip td:last-child {
  text-align: center;
}
.room_flex table.room_equip {
  font-size: 13rem;
}

.room_select {
  position: relative;
}
.room_select span {
  color: #05315E;
  font-size: 18rem;
  font-weight: 600;
  margin-right: 10rem;
}

.room_select::before,
.room_select::after {
  position: absolute;
  right: 15rem;
  width: 9rem;
  height: 6rem;
  background-color: #535353;
  content: '';
  pointer-events: none;
}

.room_select::before {
  top: calc(50% - 9rem);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.room_select::after {
  bottom: calc(50% - 9rem);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.room_select select {
  appearance: none;
  min-width: 230rem;
  height: auto;
  padding: .2em calc(.8em + 30rem) .2em .8em;
  border: 1rem solid #d0d0d0;
  border-radius: 3rem;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}

ul.lphoto {
  margin-top: 20rem;
}
ul.lphoto li {
  border: 1rem solid #BABABA;
  padding: 20rem;
}

.room_pdf {
  font-size: 14rem;
  line-height: 20rem;
  text-align: right;
  margin-top: 10rem;
}
.room_pdf i {
  font-size: 20rem;
}


@media screen and (max-width:768px) {
  .room-content {
    padding-top: 100rem;
  }
  .room-header h2 {
    width: 100%;
    height: 185rem;
    text-align: center;
    font-size: 42rem;
    line-height: 42rem;
    font-weight: 600;
    color: #51AAAF;
  }
  
  .room-header h1 {
    position: relative;
    width: 100%;
    height: 100rem;
    text-align: left;
    padding-left: 130rem;
    font-size: 36rem;
    line-height: 100rem;
    font-weight: 600;
    color: #05315E;
    background-image: linear-gradient(
      90deg, 
      #51AAAF 0 100rem, 
      #F4FAD4 100rem
    );
    background-repeat: no-repeat;
    background-position: bottom;
    margin-bottom: 0;
  }
  .room-header h1 span.floor {
    position: absolute;
    display: block;
    font-size: 36rem;
    width: 100rem;
    color: #FFF;
    text-align: center;
    top: 0;
    left: 0;
  }
  .room-header h1 span.kai {
    font-size: 21rem;
  }
  
  .room-header .goback {
    position: absolute;
    font-size: 24rem;
    line-height:  40rem;
    letter-spacing: .2em;
    top: 195rem;
    left: 20rem;
  }
  .room-header a.goback {

  }
  .room-header .addlink {
    top: 205rem;
    right: 25rem;
  }
  .room-header .addlink ul {
    display: flex;
    height: 20rem;
    font-size: 20rem;
    padding: 0;
    border-right: 2rem solid #4D4D4D;
  }
  .room-header .addlink ul li {
    line-height: 20rem;
    padding: 0 1em;
    border-left: 2rem solid #4D4D4D;
  }
  .room-header .addlink ul li a.active {
    color: #CCCCCC;
  }

  .room-content_inner {
    width: 640rem;
    margin: 50rem auto;
  }
  .room-content_inner p {
    font-size: 28rem;
    line-height: 2em;
  }
  
  .room-header .eicon {
    position: absolute;
    top: 325rem;
    right: 20rem;
  }
  .room-header .eicon ul {
    height: 30rem;
    column-gap: 10rem;
  }
  .room-header .eicon ul li {
    font-size: 20rem;
    line-height: 30rem;
    border-radius: 10rem;
    padding: 0 8rem;
  }

  .room_flex {
    display: block;
    width: 100%;
    max-width: 700rem;
  }
  .room_flex_photo {
    width: 100%;
    margin-bottom: 40rem;
  }
  .room_flex_info {
    width: 100%;
    margin-bottom: 40rem;
  }
  .room_flex h4 {
    font-size: 27rem;
    margin-bottom: 20rem;
    margin-top: 40rem;
  }

  .room_flex p.intro {
    font-size: 24rem;
    margin-top: 40rem;
  }

  .room_flex_info p {
    font-size: 24rem;
  }
  
  .room_flex table.capacity {
    border-bottom: 2rem solid #BABABA;
    border-right: 2rem solid #BABABA;
  }

  .room_flex table.capacity th,
  .room_flex table.capacity td {
    border-top: 2rem solid #BABABA;
    border-left: 2rem solid #BABABA;
  }

  .room_flex table.capacity th {
    font-size: 19rem;
    width: calc(100% / 6)
  }
  .room_flex table.capacity td {
    font-size: 36rem;
    font-weight: 600;
  }
  .room_flex table.capacity td span {
    font-size: 24rem;
  }

  .room_flex ul.tax {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    justify-content: left;
    column-gap: 20rem;
    margin-bottom: 40rem;
  }
  .room_flex ul.tax li {
    font-size: 28rem;
    line-height: 66rem;
    padding: 0 2em;
    margin-bottom: 30rem;
    background: #FFF;
    border: 2rem solid #E6E6E6;
  }

  .room_flex .mySwiper2 {
    margin-top: 40rem;
    margin-bottom: 30rem;
  }

  .room_flex table.room_equip {
    border-bottom: 2rem solid #BABABA;
    border-right: 2rem solid #BABABA;
  }
  .room_flex table.room_equip th,
  .room_flex table.room_equip td {
    border-top: 2rem solid #BABABA;
    border-left: 2rem solid #BABABA;
    text-align: left;
    padding: 10rem;
  }
  .room_flex table.room_equip td:last-child {
    text-align: center;
  }
  .room_flex table.room_equip {
    font-size: 20rem;
  }

  .room_select {
    position: relative;
  }
  .room_select span {
    color: #05315E;
    font-size: 27rem;
    font-weight: 600;
    margin-right: 20rem;
  }

  .room_select::before,
  .room_select::after {
    position: absolute;
    right: 15rem;
    width: 18rem;
    height: 12rem;
    background-color: #535353;
    content: '';
    pointer-events: none;
  }

  .room_select::before {
    top: calc(50% - 15rem);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
  }

  .room_select::after {
    bottom: calc(50% - 20rem);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }

  .room_select select {
    appearance: none;
    min-width: 360rem;
    height: auto;
    padding: 10rem 30rem 10rem 10rem;
    border: 2rem solid #d0d0d0;
    border-radius: 3rem;
    background-color: #fff;
    color: #333333;
    font-size: 24rem;
    cursor: pointer;
  }

  ul.lphoto {
    margin-top: 30rem;
  }
  ul.lphoto li {
    border: 2rem solid #BABABA;
    padding: 30rem;
  }
  .room_pdf {
    font-size: 20rem;
    line-height: 30rem;
    margin-top: 15rem;
  }
  .room_pdf i {
    font-size: 30rem;
  }

}


.room_quote {
  position: relative;
}

.room_quote_txt {
  text-align: center;
  font-size: 18rem;
  margin-top: 20rem;
  margin-bottom: 60rem;
}
.room_quote h3 {
  position: relative;
  font-size: 18rem;
  line-height: 20rem;
  font-weight: 600;
  margin-bottom: 10rem;
  color: #05315E;
  margin-top: 20rem;
}

.room_quote_pack {
  position: absolute;
  font-size: 14rem;
  top: 110rem;
  right: 0;
}

.quaote_header_a {
  height: 30rem;
  line-height: 30rem;
  font-size: 13rem;
  background: #EBEBEB;
  border-top: 1rem solid #BABABA;
  border-bottom: 1rem solid #BABABA;
  text-align: center;
  display: flex;
}
.quaote_header_a div:first-child {
  text-align: left;
  width: 425rem;
  padding-left: 50rem;
}
.quaote_header_a div:nth-child(2) {
  text-align: left;
  width: 400rem;
}
.quaote_header_a div:last-child {
  width: 170rem;
  text-align: left;
}

#item-list-a .item {
  font-size: 18rem;
  line-height: 18rem;
  padding: 15rem 0;
  border-bottom: 1rem solid #BABABA;
}
#item-list-a .item .item-radio {
  height: 18rem;;
  display: flex;
}
#item-list-a .item label {
  display: flex;
  width: 920rem;
}
#item-list-a .item-radio label span {
  display: block;
}
#item-list-a .item-radio label span:first-child {
  width: 400rem;
}
#item-list-a .item-radio label span:nth-child(2) {
  width: 350rem;
}
#item-list-a .item-radio label span:last-child {
  width: 170rem;
  text-align: right;
  font-weight: 600;
}

#item-list-a .item-radio label {
  cursor: pointer;
  padding-left: 50rem;
  position: relative;
}

#item-list-a .item-radio label::before,
#item-list-a .item-radio label::after {
  content: "";
  display: block; 
  position: absolute;
}

#item-list-a .item-radio label::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1rem solid #ddd;
  width: 20rem;
  height: 20rem;
  transform: translateY(-50%);
  top: 50%;
  left: 15rem;
}

#item-list-a .item-radio label::after {
  border-bottom: 3rem solid #51AAAF;
  border-left: 3rem solid #51AAAF;
  opacity: 0;
  height: 8rem;
  width: 16rem;
  transform: rotate(-45deg);
  top: 4rem;
  left: 17rem;
}

#item-list-a .item-radio input:checked + label::after {
  opacity: 1;
}




.quaote_header_bc{
  height: 43rem;
  font-size: 13rem;
  line-height: 16rem;
  background: #EBEBEB;
  border-top: 1rem solid #BABABA;
  border-left: 1rem solid #BABABA;
  text-align: center;
  display: flex;
}
.quaote_header_bc div:first-child {
  width: 60%;
  border-right: 1rem solid #BABABA;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quaote_header_bc div:nth-child(2) {
  width: 20%;
  border-right: 1rem solid #BABABA;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quaote_header_bc div:last-child {
  width: 20%;
  padding: 15rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1rem solid #BABABA;
}

#item-list-b,
#item-list-c {
  font-size: 18rem;
  line-height: 18rem;
  border-top: 1rem solid #BABABA;
  border-left: 1rem solid #BABABA;
}
#item-list-b .item,
#item-list-c .item {
  font-size: 18rem;

  border-bottom: 1rem solid #BABABA;
  display: flex;
}
#item-list-b .item div:first-child,
#item-list-c .item div:first-child {
  width: 60%;
  border-right: 1rem solid #BABABA;
  padding: 15rem 10rem 15rem 20rem;
}
#item-list-b .item div.stepper,
#item-list-c .item div.stepper {
  width: 20%;
  border-right: 1rem solid #BABABA;
  display: flex;
  justify-content: center;
}
#item-list-b .item div:last-child,
#item-list-c .item div:last-child {
  width: 20%;
  padding: 15rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1rem solid #BABABA;
}
.stepper {
  display: inline-flex;
  align-items: center;
}
.stepper input {
  width: 40rem;
  height: 24rem;
  text-align: center;
  padding: 2rem;
  font-size: 18rem;
  background: #FFF;
}
.stepper button {
  color: #7E7E7E;
  width: 18rem;
  height: 18rem;
  text-align: center;
  font-size: 16rem;
}
input[type="number"]::-webkit-outer-spin-button, 
input[type="number"]::-webkit-inner-spin-button { 
-webkit-appearance: none; 
margin: 0; 
} 

.room_quote .selectitem {
  background-color: #CAE8EA;
}

.room_quote .note {
  display: flex;
  justify-content: right;
  font-size: 14rem;
  padding: 10rem 0;
}

.quote_total h3 {
  text-align: center;
  font-size: 21rem;
  margin-bottom: 30rem;
}

ul#selected-items {
}
ul#selected-items li {
  display: flex;
  justify-content: space-between;
  background: #F7F8FA;
  width: 100%;
  margin-bottom: 3rem;
  height: 60rem;
}
ul#selected-items li span {
  font-size: 18rem;
  display: flex;
  align-items: center;
}
ul#selected-items li span.cat {
  width: 20%;
  justify-content: center;
}
ul#selected-items li span.name {
  width: 60%;
  justify-content: left;
}
ul#selected-items li span.name2 {
  width: 40%;
  text-align: left;
}
ul#selected-items li span.quan {
  width: 20%;
  justify-content: center;
}
ul#selected-items li span.price {
  width: 20%;
  font-weight: 600;
  justify-content: right;
  padding-right: 40rem;
}
#total-price {
  display: flex;
  justify-content: space-between;
  color: #FFF;
  background: #51AAAF;
  width: 100%;
  margin-bottom: 3rem;
  height: 60rem;
}
#total-price span {
  font-size: 18rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#total-price span.cat {
  width: 20%;
  font-weight: 600;
  justify-content: center;
}
#total-price span.price {
  width: 20%;
  font-weight: 600;
  justify-content: right;
  padding-right: 40rem;
}
.quote_total_footer {
  display: flex;
  justify-content: space-between;
  padding-top: 20rem;
  padding-bottom: 60rem;
}
.quote_total_footer .quote_total_note {
  font-size: 14rem;
}
.quote_total_footer .quote_total_btn {
  width: 390rem;
  display: flex;
  justify-content: space-between;
}


.quote_total_footer .quote_total_btn button {
  height: 52rem;
  width: 180rem;
  line-height: 52rem;
  font-size: 16rem;
  background: #E3E3E3;
  border: 1rem solid #C4C4C4;
  border-radius: 6rem;
  text-align: center;
}

.quote_total_footer .quote_total_btn button.print {
  color: #FFF;
  background: #1771DA;
  border: 1rem solid #1771DA;
}

.room_quote_right .quaote_header_bc {
  margin-top: 50rem;
}

@media screen and (max-width:768px) {
  
  
  .room_quote_txt {
    font-size: 24rem;
    margin-top: 20rem;
    margin-bottom: 60rem;
  }
  
  .room_quote h3 {
    font-size: 27rem;
    margin-bottom: 20rem;
    margin-top: 40rem;
  }
  
  .room_quote_pack {
    font-size: 18rem;
    top: 140rem;
  }
  
  .quaote_header_a {
    justify-content: space-between;
    height: 50rem;
    line-height: 50rem;
    font-size: 20rem;
    border-top: 2rem solid #BABABA;
    border-bottom: 2rem solid #BABABA;
  }
  .quaote_header_a div:first-child {
    text-align: left;
    padding-left: 80rem;
    width: auto;
  }
  .quaote_header_a div:nth-child(2) {
    width: auto;
    text-align: left;
  }
  .quaote_header_a div:last-child {
    width: auto;
    text-align: right;
    padding-right: 20rem;
  }

  #item-list-a .item {
    height: 100rem;
    padding: 15rem 0;
    border-bottom: 2rem solid #BABABA;
  }
  #item-list-a .item .item-radio {
    height: 70rem;
    display: flex;
    align-items: center;
  }
  #item-list-a .item label {
    display: block;
    font-size: 28rem;
    line-height: 35rem;
  }
  #item-list-a .item-radio label span {
    display: block;
  }
  #item-list-a .item-radio label span:first-child {
    width: 70%;
  }
  #item-list-a .item-radio label span:nth-child(2) {
    width: 70%;
    font-size: 24rem;
  }
  #item-list-a .item-radio label span:last-child {
    position: absolute;
    top: 18rem;
    right: 20rem;
    font-weight: 600;
  }

  #item-list-a .item-radio label {
    cursor: pointer;
    padding-left: 80rem;
    position: relative;
  }

  #item-list-a .item-radio label::before,
  #item-list-a .item-radio label::after {
    content: "";
    display: block; 
    position: absolute;
  }

  #item-list-a .item-radio label::before {
    background-color: #fff;
    border-radius: 0%;
    border: 2rem solid #ddd;
    width: 35rem;
    height: 35rem;
    transform: translateY(-50%);
    top: 50%;
    left: 15rem;
  }

  #item-list-a .item-radio label::after {
    border-bottom: 6rem solid #51AAAF;
    border-left: 6rem solid #51AAAF;
    opacity: 0;
    height: 16rem;
    width: 24rem;
    transform: rotate(-45deg);
    top: 24rem;
    left: 20rem;
  }


  .quaote_header_bc{
    height: 60rem;
    font-size: 20rem;
    line-height: 20rem;
    background: #EBEBEB;
    border-top: 2rem solid #BABABA;
    border-left: 2rem solid #BABABA;
    text-align: center;
    display: flex;
  }
  .quaote_header_bc div:first-child {
    width: 60%;
    border-right: 2rem solid #BABABA;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .quaote_header_bc div:nth-child(2) {
    width: 20%;
    border-right: 2rem solid #BABABA;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .quaote_header_bc div:last-child {
    width: 20%;
    padding: 15rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 2rem solid #BABABA;
  }

  #item-list-b,
  #item-list-c {
    font-size: 24rem;
    line-height: 30rem;
    border-top: 2rem solid #BABABA;
    border-left: 2rem solid #BABABA;
  }
  #item-list-b .item,
  #item-list-c .item {
    font-size: 24rem;
    height: auto;
    border-bottom: 2rem solid #BABABA;
    display: flex;
  }
  #item-list-b .item div:first-child,
  #item-list-c .item div:first-child {
    width: 60%;
    border-right: 1rem solid #BABABA;
    padding: 15rem 20rem 15rem 20rem;
  }
  #item-list-b .item div.stepper,
  #item-list-c .item div.stepper {
    width: 20%;
    border-right: 1rem solid #BABABA;
    display: flex;
    justify-content: center;
  }
  #item-list-b .item div:last-child,
  #item-list-c .item div:last-child {
    width: 20%;
    border-right: 2rem solid #BABABA;
  }
  .stepper {
    display: inline-flex;
    align-items: center;
  }
  .stepper input {
    width: 60rem;
    height: 36rem;
    text-align: center;
    padding: 2rem;
    font-size: 24rem;
    background: #FFF;
  }
  .stepper button {
    color: #7E7E7E;
    width: 24rem;
    height: 24rem;
    text-align: center;
    font-size: 24rem;
  }
  input[type="number"]::-webkit-outer-spin-button, 
  input[type="number"]::-webkit-inner-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
  }
  
  .room_quote .note {
    font-size: 20rem;
    padding: 20rem 0;
  }

  .quote_total h3 {
    text-align: center;
    font-size: 32rem;
    margin-bottom: 30rem;
  }

  ul#selected-items {
  }
  ul#selected-items li {
    display: flex;
    position: relative;
    justify-content: space-between;
    background: #F7F8FA;
    width: 100%;
    margin-bottom: 5rem;
    height: auto;
  }
  ul#selected-items li span {
    font-size: 28rem;
    display: flex;
    align-items: center;
  }
  ul#selected-items li span.cat {
    position: absolute;
    top: 20rem;
    left: 20rem;
    font-size: 24rem;
    width: auto;
    justify-content: center;
  }
  ul#selected-items li span.name {
    width: 70%;
    justify-content: left;
    padding: 60rem 20rem 20rem;
  }
  ul#selected-items li span.name2 {
    width: 70%;
    padding: 60rem 20rem 20rem;
  }
  ul#selected-items li span.quan {
    position: absolute;
    top: 20rem;
    right: 20rem;
    justify-content: center;
  }
  ul#selected-items li span.price {
    width: 30%;
    font-weight: 600;
    justify-content: right;
    padding: 60rem 40rem 20rem 0;
  }
  #total-price {
    display: flex;
    justify-content: space-between;
    color: #FFF;
    background: #51AAAF;
    width: 100%;
    margin-bottom: 3rem;
    height: 100rem;
  }
  #total-price span {
    font-size: 32rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #total-price span.cat {
    width: auto;
    font-weight: 600;
    justify-content: left;
    padding-left: 20rem;
  }
  #total-price span.price {
    width: 50%;
    font-weight: 600;
    justify-content: right;
    padding-right: 40rem;
  }
  
  .quote_total_footer {
    display: block;
    justify-content: space-between;
    padding-top: 20rem;
    padding-bottom: 100rem;
  }
  .quote_total_footer .quote_total_note {
    font-size: 18rem;
  }
  .quote_total_footer .quote_total_btn {
    width: 550rem;
    margin: 40rem auto 0;
    display: flex;
    justify-content: space-between;
  }
  
.quote_total_footer .quote_total_btn button {
  height: 80rem;
  width: 240rem;
  line-height: 80rem;
  font-size: 24rem;
  background: #E3E3E3;
  border: 2rem solid #C4C4C4;
  border-radius: 6rem;
  text-align: center;
}

.quote_total_footer .quote_total_btn button.print {
  color: #FFF;
  background: #1771DA;
  border: 2rem solid #1771DA;
}
  
  .room_quote_left {
    margin-bottom: 0;
  }
  .room_quote_right .quaote_header_bc {
    display: none;
  }
  
  #item-list-c {
    border-top: none;
  }
  
}

/*  Room Archive
--------------------------*/

.numroom {
  font-size: 18rem;
  margin-top: 40rem;
  padding-bottom: 20rem;
  border-bottom: 1rem solid #C4C4C4;
}

.noroom {
  font-size: 18rem;
  min-height: 500rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.room_list {
  margin: 50rem 0 120rem;
}

.room_list li {
  margin-bottom: 23rem;
}

.room_list li a{
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  column-gap: 15rem;;
}
.room_list .photo {
  width: 187rem;
  height: 140rem;
  background-size: cover;
  background-position: center;
  background: #F7F8FA;
}
.room_list .info {
  width: 898rem;
  height: 140rem;
}

.room_list h3 {
  position: relative;
  width: 100%;
  height: 52rem;
  text-align: left;
  padding-left: 80rem;
  font-size: 24rem;
  line-height: 52rem;
  font-weight: 600;
  color: #05315E;
  background-image: linear-gradient(
    90deg, 
    #87CFD3 0 60rem, 
    #CAE8EA 60rem
  );
  background-repeat: no-repeat;
  background-position: bottom;
  margin-bottom: 0;
}
.room_list h3 span.floor {
  position: absolute;
  display: block;
  width: 60rem;
  color: #FFF;
  text-align: center;
  top: 0;
  left: 0;
}
.room_list h3 span.kai {
  font-size: 16rem;
}
.room_list h3 span.price {
  position: absolute;
  right: 20rem;
  font-size: 16rem;
  font-weight: 400;
  color: #000;
}
.room_list h3 span.price2 {
  font-size: 18rem;
  font-weight: 600;
}

.room_list .photo img {
  width: 187rem;
  height: 140rem;
  object-fit: cover;
}

.room_list .info {
  background: #F7F8FA;
}

.room_list .info .info_inner {
  display: flex;
  justify-content: space-between;
  padding: 20rem;
}

.info_inner p.size {
  font-size: 14rem;
}

.room_list table {
  width: 500rem;
  border-bottom: 1rem solid #BABABA;
  border-right: 1rem solid #BABABA;
}

.room_list table.capacity th,
.room_list table.capacity td {
  border-top: 1rem solid #BABABA;
  border-left: 1rem solid #BABABA;
  text-align: center;
}

.room_list table.capacity th {
  font-size: 13rem;
  width: calc(100% / 6)
}
.room_list table.capacity td {
  font-size: 16rem;
}
.room_list table.capacity td span {
  font-size: 16rem;
}


.room_search {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: #F7F8FA;
}
.room_search .room_search_inner {
  width: 100%;
  max-width: 1100rem;
  margin: 0 auto;
  padding: 30rem 0 30rem;
  display: flex;
  justify-content: space-between;
}

.room_search h4 {
  font-size: 15rem;
  font-weight: 600;
  color: #51AAAF;
  margin-bottom: 10rem;
}
.room_search_layout ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20rem;
  width: 490rem;
}
.room_search_layout ul li {
  width: 150rem;
  margin-bottom: 20rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.3em;
}

.room_search_layout ul li input[type=radio]+label:before{
  content: "";
  display: inline-block;
  background-size: contain;
  background-color: #FFF;
  width: 150rem;
  height: 100rem;
  border: 2rem solid #E5E5E5;
  border-radius: 10rem;
}

.room_search_capacity {
  width: 520rem;
}

.room_search_layout ul li input[type=radio][value="school"]+label:before {
  background-image: url(/ostec-room/images/layout01.webp);
}
.room_search_layout ul li input[type=radio][value="exam"]+label:before {
  background-image: url(/ostec-room/images/layout02.webp);
}
.room_search_layout ul li input[type=radio][value="type-r"]+label:before {
  background-image: url(/ostec-room/images/layout03.webp);
}
.room_search_layout ul li input[type=radio][value="type-c"]+label:before {
  background-image: url(/ostec-room/images/layout04.webp);
}
.room_search_layout ul li input[type=radio][value="gp-i"]+label:before {
  background-image: url(/ostec-room/images/layout05.webp);
}
.room_search_layout ul li input[type=radio][value="gp-t"]+label:before {
  background-image: url(/ostec-room/images/layout06.webp);
}
.room_search_layout ul li input label {
  font-size: 16rem;
  line-height: 21rem;
}
.room_search_layout ul li input:checked + label:before {
  border: 2rem solid #0381FF;
}


.room_search_select {
  position: relative;
}
.room_search_select span {
  color: #05315E;
  font-size: 18rem;
  font-weight: 600;
  margin-right: 10rem;
}

.room_search_select::before,
.room_search_select::after {
  position: absolute;
  right: 15rem;
  width: 9rem;
  height: 6rem;
  background-color: #535353;
  content: '';
  pointer-events: none;
}

.room_search_select::before {
  top: calc(50% - 9rem);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.room_search_select::after {
  bottom: calc(50% - 9rem);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.room_search_select select {
  appearance: none;
  width: 100%;
  min-width: 400rem;
  height: auto;
  padding: .2em calc(.8em + 30rem) .2em .8em;
  border: 1rem solid #d0d0d0;
  border-radius: 3rem;
  background-color: #fff;
  margin-bottom: 30rem;
  color: #333333;
  font-size: 1em;
  line-height: 50rem;
  cursor: pointer;
}

.room_search .btns {
  display: flex;
  justify-content: space-between;
  column-gap: 25rem;
  margin-top: 20rem;
}
.room_search .btns button#clear {
  width: 155rem;
  height: 55rem;
  line-height: 55rem;
  font-size: 14rem;
  background: #E3E3E3;
  border-radius: 10rem;
  text-align: center;
}
.room_search .btns button#search {
  width: calc(100% - 180rem);
  height: 55rem;
  line-height: 55rem;
  font-size: 21rem;
  color: #FFF;
  background: #1771DA;
  border-radius: 10rem;
  text-align: center;
}

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

  .numroom {
    font-size: 32rem;
    margin-top: 80rem;
    padding-bottom: 20rem;
    border-bottom: 2rem solid #C4C4C4;
  }
  
  .noroom {
    font-size: 32rem;
    min-height: 500rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .room_list {
    margin: 80rem 0 160rem;
  }
  
  .room_list li {
    margin-bottom: 36rem;
  }
  
  .room_list li a{
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    column-gap: 30rem;;
  }
  .room_list .photo {
    width: 210rem;
    height: 210rem;
    background-size: cover;
    background-position: center;
    background: #F7F8FA;
    display: none;
  }
  .room_list .info {
    width: 100%;
    height: auto;
  }
  
  .room_list h3 {
    position: relative;
    width: 100%;
    height: 80rem;
    text-align: left;
    padding-left: 120rem;
    font-size: 40rem;
    line-height: 80rem;
    font-weight: 600;
    color: #05315E;
    background-image: linear-gradient(
      90deg, 
      #87CFD3 0 100rem, 
      #CAE8EA 100rem
    );
    background-repeat: no-repeat;
    background-position: bottom;
    margin-bottom: 0;
  }
  .room_list h3 span.floor {
    position: absolute;
    display: block;
    width: 100rem;
    color: #FFF;
    text-align: center;
    top: 0;
    left: 0;
  }
  .room_list h3 span.kai {
    font-size: 32rem;
  }
  
  .room_list .photo img {
    width: 210rem;
    height: 210rem;
    object-fit: cover;
  }
  
  .room_list .info {
    background: #F7F8FA;
  }
  
  .room_list .info .info_inner {
    display: flex;
    flex-direction: column;
    gap: 20rem;
    justify-content: space-between;
    padding: 20rem 30rem 30rem;
  }
  
  .room_list .price {
    right: 20rem;
    font-size: 24rem;
    font-weight: 400;
    color: #000;
  }
  .room_list span.price2 {
    font-size: 28rem;
    font-weight: 600;
  }
  .info_inner p.size {
    font-size: 24rem;
  }
  
  .room_list table {
    width: 100%;
    border-bottom: 2rem solid #BABABA;
    border-right: 2rem solid #BABABA;
  }
  
  .room_list table.capacity th,
  .room_list table.capacity td {
    border-top: 2rem solid #BABABA;
    border-left: 2rem solid #BABABA;
    text-align: center;
  }
  
  .room_list table.capacity th {
    font-size: 18rem;
    width: calc(100% / 6)
  }
  .room_list table.capacity td {
    font-size: 24rem;
  }
  .room_list table.capacity td span {
    font-size: 24rem;
  }

  .room_search {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: #F7F8FA;
  }
  .room_search .room_search_inner {
    width: 100%;
    max-width: 700rem;
    margin: 0 auto;
    padding: 60rem 0 80rem;
    display: block;
  }
  
  .room_search h4 {
    font-size: 24rem;
    font-weight: 600;
    color: #51AAAF;
    margin-bottom: 10rem;
  }
  .room_search_layout ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20rem;
    width: 100%;
    justify-content: space-between;
  }
  .room_search_layout ul li {
    width: 210rem;
    margin-bottom: 20rem;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  
  .room_search_layout ul li input[type=radio]+label:before{
    content: "";
    display: inline-block;
    background-size: contain;
    width: 210rem;
    height: 140rem;
    border: 4rem solid #E5E5E5;
    border-radius: 10rem;
  }
  
  .room_search_capacity {
    width: 700rem;
    margin: 0 auto;
  }
  
  .room_search_layout ul li input label {
    font-size: 24rem;
    line-height: 28rem;
  }
  .room_search_layout ul li input:checked + label:before {
    border: 4rem solid #0381FF;
  }
  
  
  .room_search_select {
    position: relative;
  }
  .room_search_select span {
    color: #05315E;
    font-size: 27rem;
    font-weight: 600;
    margin-right: 20rem;
  }

  .room_search_select::before,
  .room_search_select::after {
    position: absolute;
    right: 15rem;
    width: 18rem;
    height: 12rem;
    background-color: #535353;
    content: '';
    pointer-events: none;
  }

  .room_search_select::before {
    top: calc(50% - 15rem);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
  }

  .room_search_select::after {
    bottom: calc(50% - 20rem);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }

  .room_search_select select {
    appearance: none;
    min-width: 700rem;
    height: auto;
    padding: 10rem 30rem 10rem 10rem;
    border: 2rem solid #d0d0d0;
    border-radius: 3rem;
    background-color: #fff;
    color: #333333;
    font-size: 32rem;
    line-height: 60rem;
    cursor: pointer;
    margin-bottom: 50rem;
  }
  .room_search .btns {
    display: flex;
    justify-content: space-between;
    column-gap: 25rem;
    margin-top: 20rem;
  }
  .room_search .btns button#clear {
    width: 255rem;
    height: 80rem;
    line-height: 80rem;
    font-size: 24rem;
    background: #E3E3E3;
    border-radius: 15rem;
    text-align: center;
  }
  .room_search .btns button#search {
    width: calc(100% - 280rem);
    height: 80rem;
    line-height: 80rem;
    font-size: 32rem;
    color: #FFF;
    background: #1771DA;
    border-radius: 15rem;
    text-align: center;
  }
}

/*  Access
--------------------------*/

.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50%;
  margin-bottom: 2em;
}
 
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

dl.access {
  font-size: 24rem;
  line-height: 40rem;
  display: flex;
  column-gap: 10rem;
}
dl.access dt {
  padding: 0 1em;
  font-weight: 400;
  font-size: 16rem;
  background: #DAEB80;
}
dl.access dd {
  padding: 0 1em;
  background: #F4FAD4;
}

@media screen and (max-width:768px) {
  .map {
    padding-top: 100%;
  }
}

/* News Archive
--------------------------*/

.news_list {
  width: 100%;
  margin: 60rem auto;
}

.news_list li {
  border-bottom: 1rem solid #CCCCCC;
  
}
.news_list li a {
  display: flex;
  text-decoration: none;
  padding: 18rem 0;
}

.news_list li a .date {
  width: 120rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 18rem;
  line-height: 24rem;
  margin-right: 1em;
}

.news_list li a h4 {
  color: #1571DA;
  font-size: 16rem;
  line-height: 24rem;
  font-weight: 400;
}

@media screen and (max-width:768px) {
  .news_list li a {
    display: block;
  }
  .news_list li a .date {
    width: auto;
    font-size: 32rem;
    line-height: 40rem;
  }
  .news_list li a h4 {
    font-size: 28rem;
    line-height: 40rem;
  }
}

/* News Single
--------------------------*/
.news_content P.date {
  font-size: 13rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  line-height: 24rem;
  margin: 40rem 0 0 0;
}
.news_content h1 {
  font-size: 24rem;
  line-height: 32rem;
  margin: 20rem 0 40rem;
  padding-bottom: 40rem;;
  border-bottom: 1rem dotted #A0A0A0;
  text-align: center;
}

/* wp-pagenavi
--------------------------*/
.wp-pagenavi {
  margin: 50px auto 70px;;
  width: auto;
  font-family: 'Oswald', sans-serif;
  text-align: center;
}
.wp-pagenavi .pages, .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  display: none;
}
.wp-pagenavi a.page ,.wp-pagenavi .current ,.wp-pagenavi a.first ,.wp-pagenavi a.last {
  text-align: center;
  display: inline-block;
  font-size: 16px;
  padding: 0 10px;
  line-height: 40px;
  height: 40px;
  background: #FFF;
  color: #1C7CD5;
  border-left: 1px solid #DDDDDD;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  text-decoration: none;
}
.wp-pagenavi a.last{
  border-right: 1px solid #DDDDDD;
}
.wp-pagenavi .current {
  background: #CCCCCC;
}

/*  contact
--------------------------*/

#contact {
  margin-top: 70rem; 
  text-align: left;
}
#contact .table-wrap {
}
#contact .table {
  width: 100%;
  border-collapse: collapse;
}
#contact table th {
  padding: 8rem 10rem;
  text-align: center;
}
#contact table td {
  padding: 8rem 10rem;
}
#contact p {
  text-align: left;
  margin: 30rem auto 5rem;
}

#contact .col2-contact {
  width: 90%;
  margin: 3rem auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  column-gap: 10%;
  
}
#contact .col2-contact .left {
  width: 40%;
}
#contact .col2-contact .right {
  width: 50%;
}
#contact .col2-contact .full {
  width: 100%;
}
@media screen and (max-width:768px) {
  #contact .col2-contact .left,
  #contact .col2-contact .right,
  #contact .col2-contact .full {
    width: 100%;
  }

  #contact {
    margin-top: 100rem; 
  }
  #contact .table-wrap {
  }

  #contact table th {
    padding: 16rem 20rem;
    text-align: center;
  }
  #contact table td {
    padding: 16rem 20rem;
  }
  #contact p {
    text-align: left;
    margin: 30rem auto 5rem;
  }
  
}


#contact .col2-contact p {
  margin: 0;
  text-align: left;
  width: 100%;
}

#contact label,
#contact .col2-contact .label,
#contact .col2-contact .label p {
  display: block;
  color: #4D4D4D;
  font-size: 14rem;
  line-height: 20rem;
  width: 100%;
  margin-bottom: 0;
  align-items: center;
}

#contact span.must {
  font-size: 10rem;
  line-height: 15rem;
  background: #F8BEBE;
  padding: 2rem 1em;
  margin-left: 2em;
}

#contact input[type="text"],
#contact input[type="tel"],
#contact input[type="email"],
#contact input[type="date"],
#contact textarea {
  width: 100%;
  font-size: 14rem;
  padding: 15rem 20rem;
  background: #FFF;
  border: 1rem solid #CDD6DD;
  margin-top: 10rem;
  margin-bottom: 20rem;
}

#contact .contact_select {
  position: relative;
}

#contact .contact_select:before {
  position: absolute;
  top: calc(50% - 5rem);
  right: 20rem;
  z-index: 10;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8rem solid #CDD6DD;
  border-right: 6rem solid transparent;
  border-left: 6rem solid transparent;
  pointer-events: none;
  content: '';
}
#contact .contact_select_bnone:before {
  display: none;
}


#contact .contact_select select {
  width: 100%;
  font-size: 14rem;
  padding: 15rem 20rem;
  margin-top: 10rem;
  margin-bottom: 20rem;
  background: #FFF;
  color: #4D4D4D;
  border: 1rem solid #CDD6DD;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.wpcf7-list-item {
  width: 100%;
  text-align: center;
  margin: 0;
}
.wpcf7-list-item label {
  display: flex!important;
  justify-content: center;
  align-content: center;
}
.wpcf7-list-item label .wpcf7-list-item-label {
  line-height: 30rem;
}
.wpcf7-spinner {
  display: block;
}

#contact input[type="checkbox"],
#contact input[type="radio"] {
  display: block;
  position: relative;
  width: 30rem!important;
  height: 30rem!important;
  margin-right: 8rem;
  border: 1rem solid #bcbcbc;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: middle;
}

#contact input[type="checkbox"]:checked {
  border: 1rem solid #000;
  background: #FFF;
}

#contact input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2rem;
  left: 7rem;
  transform: rotate(50deg);
  width: 12rem;
  height: 20rem;
  border-right: 2rem solid #CDD6DD;
  border-bottom: 2rem solid #CDD6DD;
  content: '';
}

#contact input[type="submit"] {
  width: 180rem;
  height: 56rem;
}

#contact .contact_button p {
  text-align: center!important;
}

#contact input[type="submit"] {
  width: 360rem;
  height: 50rem;
  font-size: 12rem;
  font-weight: 700;
  background: #1771DA;
  color: #fff;
  transition: opacity .6s;
  margin-top: 1em;
}

#contact input[type="submit"]:hover {
  opacity: .6;
}

#contact span.confirm {
  display: block;
  width: 100%;
  padding: 15rem 20rem;
  background: #FFF;
  border: 1rem solid #CDD6DD;
  margin-top: 10rem;
}

@media screen and (max-width:768px) {
  #contact input[type="checkbox"] {
    opacity: 1;
    visibility: visible;
  }
  #contact input[type="submit"] {
    width: 100%;
  }

  
  
  #contact .col2-contact p {
    margin: 0;
    text-align: left;
    width: 100%;
  }
  
  #contact label,
  #contact .col2-contact .label,
  #contact .col2-contact .label p {
    display: block;
    color: #4D4D4D;
    font-size: 28rem;
    line-height: 40rem;
    width: 100%;
    margin-bottom: 0;
  }
  
  #contact span.must {
    font-size: 20rem;
    line-height: 30rem;
    background: #F8BEBE;
    padding: 4rem 1em;
    margin-left: 2em;
  }
  
  #contact input[type="text"],
  #contact input[type="tel"],
  #contact input[type="email"],
  #contact input[type="date"],
  #contact textarea {
    width: 100%;
    font-size: 24rem;
    padding: 30rem 40rem;
    background: #FFF;
    border: 2rem solid #CDD6DD;
    margin-top: 20rem;
    margin-bottom: 40rem;
  }
  
  #contact .contact_select {
    position: relative;
  }
  
  #contact .contact_select:before {
    position: absolute;
    top: calc(50% - 12rem);
    right: 40rem;
    z-index: 10;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 16rem solid #CDD6DD;
    border-right: 12rem solid transparent;
    border-left: 12rem solid transparent;
    pointer-events: none;
    content: '';
  }
  
  #contact .contact_select select {
    width: 100%;
    font-size: 24rem;
    padding: 30rem 40rem;
    margin-top: 20rem;
    margin-bottom: 40rem;
    background: #FFF;
    color: #4D4D4D;
    border: 2rem solid #CDD6DD;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  
  .wpcf7-list-item {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .wpcf7-list-item label {
    display: flex!important;
    justify-content: center;
    align-content: center;
  }
  .wpcf7-list-item label .wpcf7-list-item-label {
    line-height: 40rem;
  }
  .wpcf7-spinner {
    display: block;
  }
  
  #contact input[type="checkbox"],
  #contact input[type="radio"] {
    display: block;
    position: relative;
    width: 60rem!important;
    height: 60rem!important;
    margin-right: 16rem;
    border: 2rem solid #bcbcbc;
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    vertical-align: middle;
  }
  
  #contact input[type="checkbox"]:checked {
    border: 2rem solid #000;
    background: #FFF;
  }
  
  #contact input[type="checkbox"]:checked:before {
    position: absolute;
    top: 4rem;
    left: 14rem;
    transform: rotate(50deg);
    width: 24rem;
    height: 40rem;
    border-right: 4rem solid #CDD6DD;
    border-bottom: 4rem solid #CDD6DD;
    content: '';
  }
  
  #contact input[type="submit"] {
    width: 360rem;
    height: 112rem;
  }
  
  #contact .contact_button p {
    text-align: center!important;
  }
  
  #contact input[type="submit"] {
    width: 660rem;
    height: 100rem;
    font-size: 28rem;
    font-weight: 700;
    background: #1771DA;
    color: #fff;
    transition: opacity .6s;
  }
  
  #contact input[type="submit"]:hover {
    opacity: .6;
  }
  
  #contact span.confirm {
    display: block;
    width: 100%;
    padding: 30rem 40rem;
    background: #FFF;
    border: 2rem solid #CDD6DD;
    margin-top: 20rem;
  }
}

/*  Print
--------------------------*/

.printonly {
  display: none;
}
@media print {
  header, footer, .noprint {
    display: none;
  }
  .printonly {
    display: block;
  }
  .printswiper {
    margin-top: 40rem;
  }
  main {
    margin-top: 0;
  }
  #wrapper {
    overflow: visible;
  }
  html {
  font-size: .5px;
  }
  .swiper {
    display: none!important;
}
@page {
  size: A4　portrait;
  margin: 10mm 8mm 15mm 8mm;
}

/* 
margin padding
*/
.mt-0 {
  margin-top: 0rem !important;
}
.mb-0 {
  margin-bottom: 0rem !important;
}
.mr-0 {
  margin-right: 0rem !important;
}
.ml-0 {
  margin-left: 0rem !important;
}
.mt-10 {
  margin-top: 10rem !important;
}
.mb-10 {
  margin-bottom: 10rem !important;
}
.mr-10 {
  margin-right: 10rem !important;
}
.ml-10 {
  margin-left: 10rem !important;
}
.mt-20 {
  margin-top: 20rem !important;
}
.mb-20 {
  margin-bottom: 20rem !important;
}
.mr-20 {
  margin-right: 20rem !important;
}
.ml-20 {
  margin-left: 20rem !important;
}
.mt-30 {
  margin-top: 30rem !important;
}
.mb-30 {
  margin-bottom: 30rem !important;
}
.mr-30 {
  margin-right: 30rem !important;
}
.ml-30 {
  margin-left: 30rem !important;
}
.mt-40 {
  margin-top: 40rem !important;
}
.mb-40 {
  margin-bottom: 40rem !important;
}
.mr-40 {
  margin-right: 40rem !important;
}
.ml-40 {
  margin-left: 40rem !important;
}
.mt-50 {
  margin-top: 50rem !important;
}
.mb-50 {
  margin-bottom: 50rem !important;
}
.mr-50 {
  margin-right: 50rem !important;
}
.ml-50 {
  margin-left: 50rem !important;
}
.mt-60 {
  margin-top: 60rem !important;
}
.mb-60 {
  margin-bottom: 60rem !important;
}
.mr-60 {
  margin-right: 60rem !important;
}
.ml-60 {
  margin-left: 60rem !important;
}
.mt-70 {
  margin-top: 70rem !important;
}
.mb-70 {
  margin-bottom: 70rem !important;
}
.mr-70 {
  margin-right: 70rem !important;
}
.ml-70 {
  margin-left: 70rem !important;
}
.mt-80 {
  margin-top: 80rem !important;
}
.mb-80 {
  margin-bottom: 80rem !important;
}
.mr-80 {
  margin-right: 80rem !important;
}
.ml-80 {
  margin-left: 80rem !important;
}
.mt-90 {
  margin-top: 90rem !important;
}
.mb-90 {
  margin-bottom: 90rem !important;
}
.mr-90 {
  margin-right: 90rem !important;
}
.ml-90 {
  margin-left: 90rem !important;
}
.mt-100 {
  margin-top: 100rem !important;
}
.mb-100 {
  margin-bottom: 100rem !important;
}
.mr-100 {
  margin-right: 100rem !important;
}
.ml-100 {
  margin-left: 100rem !important;
}
.pt-10 {
  padding-top: 10rem !important;
}
.pb-10 {
  padding-bottom: 10rem !important;
}
.pr-10 {
  padding-right: 10rem !important;
}
.pl-10 {
  padding-left: 10rem !important;
}
.pt-20 {
  padding-top: 20rem !important;
}
.pb-20 {
  padding-bottom: 20rem !important;
}
.pr-20 {
  padding-right: 20rem !important;
}
.pl-20 {
  padding-left: 20rem !important;
}
.pt-30 {
  padding-top: 30rem !important;
}
.pb-30 {
  padding-bottom: 30rem !important;
}
.pr-30 {
  padding-right: 30rem !important;
}
.pl-30 {
  padding-left: 30rem !important;
}
.pt-40 {
  padding-top: 40rem !important;
}
.pb-40 {
  padding-bottom: 40rem !important;
}
.pr-40 {
  padding-right: 40rem !important;
}
.pl-40 {
  padding-left: 40rem !important;
}
.pt-50 {
  padding-top: 50rem !important;
}
.pb-50 {
  padding-bottom: 50rem !important;
}
.pr-50 {
  padding-right: 50rem !important;
}
.pl-50 {
  padding-left: 50rem !important;
}
.pt-60 {
  padding-top: 60rem !important;
}
.pb-60 {
  padding-bottom: 60rem !important;
}
.pr-60 {
  padding-right: 60rem !important;
}
.pl-60 {
  padding-left: 60rem !important;
}
.pt-70 {
  padding-top: 70rem !important;
}
.pb-70 {
  padding-bottom: 70rem !important;
}
.pr-70 {
  padding-right: 70rem !important;
}
.pl-70 {
  padding-left: 70rem !important;
}
.pt-80 {
  padding-top: 80rem !important;
}
.pb-80 {
  padding-bottom: 80rem !important;
}
.pr-80 {
  padding-right: 80rem !important;
}
.pl-80 {
  padding-left: 80rem !important;
}
.pt-90 {
  padding-top: 90rem !important;
}
.pb-90 {
  padding-bottom: 90rem !important;
}
.pr-90 {
  padding-right: 90rem !important;
}
.pl-90 {
  padding-left: 90rem !important;
}
.pt-100 {
  padding-top: 100rem !important;
}
.pb-100 {
  padding-bottom: 100rem !important;
}
.pr-100 {
  padding-right: 100rem !important;
}
.pl-100 {
  padding-left: 100rem !important;
}
.pd-10 {
  padding: 10rem !important;
}
.pd-20 {
  padding: 20rem !important;
}
.pd-30 {
  padding: 30rem !important;
}
/*フォント系*/
.f-12 {
  font-size: 12rem !important;
}
.f-14 {
  font-size: 14rem !important;
}
.f-20 {
  font-size: 20rem !important;
}
.f-25 {
  font-size: 25rem !important;
}
.f-26 {
  font-size: 26rem !important;
}
.f-30 {
  font-size: 30rem !important;
}
.f-35 {
  font-size: 35rem !important;
}
.f-38 {
  font-size: 38rem !important;
}
.f-40 {
  font-size: 40rem !important;
}
.f-46 {
  font-size: 46rem !important;
}
.f-50 {
  font-size: 50rem !important;
}
.line-h-15 {
  line-height: 1.5 !important;
}
.f-b {
  font-weight: bold !important;
}
.wd-50 {
  width: 50% !important;
}
.wd-80 {
  width: 80% !important;
}
.wd-100 {
  width: 100% !important;
}
.mb-05em {
  margin-bottom: .5em !important;
}
.mb-1em {
  margin-bottom: 1em !important;
}
.mb-15em {
  margin-bottom: 1.5em !important;
}
.mb-2em {
  margin-bottom: 2em !important;
}
.mb-25em {
  margin-bottom: 2.5em !important;
}
.mb-3em {
  margin-bottom: 3em !important
}

@media only screen and (max-width: 767rem) {
  .mwd-50 {
    width: 50% !important;
  }
  .mwd-80 {
    width: 80% !important;
  }
  .mwd-100 {
    width: 100% !important;
  }
}