@charset "UTF-8";
/* Josh's Custom CSS Reset --- more customized */
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  height: 100%;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  font-size: 100%;
}

#root, #__next {
  isolation: isolate;
}

/* Basic settings */
br {
  letter-spacing: 0;
}

ul, li {
  list-style: none;
}

img, a img {
  border: 0;
  text-decoration: none;
}

mark {
  background: #ff0;
  color: #000;
}

b, strong {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Base Set */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

body {
  color: #595757;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

a {
  background-color: transparent;
  outline: 0;
  text-decoration: none;
  transition: all 0.5s;
}

:root {
  --pcl:1296px;
  --pcm:1040px;
  --mid:500;
  --bold:700;
}

/* -------------------------------------------------------
Layout
---------------------------------------------------------- */
html {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #fcf8f0;
}

.footer {
  margin-top: auto;
}

h1, h2, h3, h4 {
  font-weight: normal;
}

.fs14 {
  font-size: 1.4rem;
}

a:link, a:visited {
  color: #595757;
}
a:hover {
  color: #ccc;
}
a.btn_c {
  position: relative;
  display: inline-block;
  padding: 1em 3em;
  background-color: #111;
  border: 1px solid #111;
  color: #fff;
  font-size: 90%;
  letter-spacing: 0.1em;
  vertical-align: middle;
}
a.btn_c::before, a.btn_c::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

/* button */
.arrow::before {
  right: 16px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* header
------------------------------------------- */
@media screen and (min-width: 1081px) {
  .header .inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: var(--pcl);
    padding-right: 4rem;
    padding-left: 4rem;
    height: 16rem;
    margin: 0 auto;
  }
  .header .inner .navbar {
    display: none;
  }
  .header .inner .title {
    display: flex;
    align-items: flex-end;
    width: 20%;
    min-width: 22rem;
  }
  .header .inner .title a, .header .inner .title img {
    width: 100%;
    height: auto;
  }
  .header .inner .nav {
    flex: 1;
  }
  .header .nav_inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 16rem;
  }
  .header .nav_inner .site_info {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }
  .header .nav_inner .site_info p {
    display: inline-block;
    height: 5rem;
    padding-top: 1em;
    padding-right: 3rem;
    padding-left: 3rem;
    background-color: #2b62ad;
    border-radius: 0 0 0.8rem 0.8rem;
    color: #fff;
  }
  .header .menu_list {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 11rem;
    padding-bottom: 1.2rem;
  }
  .header .nav_inner ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 5rem;
  }
  .header .nav_inner ul li {
    font-size: clamp(1.8rem, 1.7vw, 2.4rem);
    font-weight: var(--mid);
  }
}
@media screen and (max-width: 1080px) {
  .header .inner .title {
    padding-top: 3rem;
    text-align: center;
  }
  .header .inner .title img {
    width: 24%;
    height: auto;
  }
  /* nav ------------------------- */
  .navbar {
    /*position: fixed;*/
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
  }
  .drawer_btn {
    position: relative;
    width: 5rem;
    height: 5rem;
    background-color: inherit;
    border: none;
    cursor: pointer;
  }
  .drawer_btn > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    height: 2px;
    background-color: #2b62ad;
    transform: translateX(-50%);
  }
  .drawer_btn > span:first-child {
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
  }
  .drawer_btn > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }
  .drawer_btn > span:last-child {
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
  }
  .drawer_btn.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #fff;
  }
  .drawer_btn.active > span:nth-child(2) {
    opacity: 0;
  }
  .drawer_btn.active > span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #fff;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #2b62ad;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9998;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
  }
  .nav_inner {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 0 4rem;
    background-color: #2b62ad;
    overflow: auto;
  }
  .site_info {
    display: none;
  }
  .nav_inner .menu_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .nav_inner ul li {
    padding-top: 1em;
    padding-bottom: 1em;
    text-align: center;
  }
  .nav_inner ul li a {
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
  }
  /* メニュー展開時、背景を固定 */
  body.active {
    height: 100%;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .header .inner .title img {
    width: auto;
    height: 8rem;
  }
}
/* common
---------------------------------------------------------- */
.pdlr {
  padding-right: 4rem;
  padding-left: 4rem;
}

@media screen and (max-width: 767px) {
  .pdlr {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.section_title {
  letter-spacing: 0.15em;
  text-align: center;
}
.section_title .en {
  color: #2b62ad;
  font-size: 1.5rem;
  font-weight: var(--mid);
}
.section_title h2 {
  margin-top: 2rem;
  font-size: clamp(2.4rem, 2.5vw, 3.4rem);
  font-weight: var(--mid);
}
.section_title.bg-dark .en {
  color: #e6e032;
}
.section_title.bg-dark h2 {
  color: #fff;
}

.content_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content_btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 21rem;
  height: 5.4rem;
  padding-right: 3.4rem;
  padding-left: 3.4rem;
  background-color: #fff;
  border-radius: 2.7rem;
  color: #2b62ad;
  font-size: 1.8rem;
}
.content_btn .chevron-right {
  display: block;
  color: #2b62ad;
  line-height: 1;
  width: 1rem;
  height: 1rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
.content_btn a:hover {
  opacity: 0.5;
}

/* fv
---------------------------------------------------------- */
.fv {
  width: 100%;
  max-width: 1240px;
  height: 764px;
  margin-top: 6.4rem;
  margin-right: auto;
  margin-left: auto;
}
.fv .inner {
  display: flex;
  flex-direction: row;
  gap: 8vw;
  padding-right: 4rem;
  padding-left: 4rem;
}
.fv .fv_img {
  width: 65%;
  max-width: 764px;
}
.fv .catch {
  width: 30%;
  max-width: 260px;
  padding-top: 6vw;
  padding-bottom: 15rem;
  background-image: url(../images/fv_2.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  writing-mode: vertical-rl;
}
.fv .catch h2 {
  font-size: clamp(2.4rem, 2vw, 3.4rem);
  font-weight: var(--mid);
  line-height: 2em;
}
.fv .catch .desc {
  margin-right: 2rem;
  padding-top: 3rem;
  font-weight: var(--mid);
}
.fv .catch .desc p {
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 2em;
}

@media screen and (max-width: 767px) {
  .fv {
    height: auto;
  }
  .fv .inner {
    flex-direction: column;
  }
  .fv .fv_img {
    width: 100%;
    text-align: center;
  }
  .fv .fv_img img {
    width: 100%;
    max-width: 40rem;
  }
  .fv .catch {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    background-size: 20rem auto;
  }
  .fv .catch .desc p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .fv {
    height: auto;
    min-height: 48rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .fv .fv_img {
    width: 54%;
  }
  .fv .catch {
    padding-top: 4rem;
  }
}
/* news
---------------------------------------------------------- */
.news {
  width: 100%;
  max-width: var(--pcm);
  margin-top: 16rem;
  margin-right: auto;
  margin-left: auto;
}
.news .news_list {
  margin-top: 8rem;
  border-top: 1px solid #ccc;
}
.news .news_list li {
  padding: 4rem 2rem;
  border-bottom: 1px solid #ccc;
}

dl.news-body dt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5rem;
  font-size: 1.8rem;
  line-height: 2;
}
dl.news-body dt .date {
  max-width: 10.8rem;
  color: #2b62ad;
  font-weight: var(--mid);
  letter-spacing: 0.1em;
}
dl.news-body dt .news_title {
  flex: 1;
  font-weight: var(--mid);
}
dl.news-body dt .openclose {
  width: 2.4rem;
}
dl.news-body dt .openclose img {
  width: 2.2rem;
  height: auto;
}
dl.news-body dt {
  cursor: pointer;
}
dl.news-body dd {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}
dl.news-body dd p {
  padding-top: 2rem;
  line-height: 2.2;
}
dl.news-body dd a {
  text-decoration: underline;
}
dl.news-body dd a::after {
  content: "\f08e";
  font-family: "Forkawesome";
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .news {
    margin-top: 10rem;
  }
  .news .news_list {
    margin-top: 4.8rem;
  }
  dl.news-body dt {
    flex-direction: column;
    gap: 2rem;
  }
}
/* about
---------------------------------------------------------- */
.about {
  margin-top: 16rem;
}
.about .inner {
  background-color: #2b62ad;
  color: #fff;
  margin-top: -0.2rem;
  margin-bottom: -0.2rem;
  padding-top: 16rem;
  padding-bottom: 16rem;
}
.about .intro_desc {
  margin-top: 7.2rem;
  padding-right: 4rem;
  padding-left: 4rem;
  line-height: 2.4;
  text-align: center;
}

.about_btn {
  margin-top: 4.8rem;
}

.philosophy {
  margin-top: 8rem;
}
.philosophy .arrow {
  margin-bottom: 3rem;
  text-align: center;
}
.philosophy .arrow img {
  width: auto;
  height: 12rem;
}
.philosophy .philosophy_title {
  text-align: center;
}
.philosophy .philosophy_title h2 {
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-weight: var(--mid);
}

.philosophy_block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8rem;
  margin-top: 5.6rem;
}
.philosophy_block li {
  width: 28rem;
  text-align: center;
}
.philosophy_block li figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30rem;
}
.philosophy_block li h3 {
  margin-top: 4rem;
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-weight: var(--mid);
  line-height: 2;
}
.philosophy_block li p {
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .about {
    margin-top: 10rem;
  }
  .philosophy_block li figure {
    align-items: flex-end;
    height: auto;
  }
  .philosophy_block li figure img {
    width: 80%;
    height: auto;
  }
  .philosophy_block li p {
    font-size: 1.6rem;
  }
}
/* pharmacy
---------------------------------------------------------- */
.pharmacy {
  margin-top: 16rem;
}

.pharmacy_link {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 7.2rem;
}

.ph_box a {
  display: flex;
  align-items: center;
  height: 5.6rem;
  padding-right: 3.2rem;
  padding-left: 3.2rem;
  border: 1px solid #2b62ad;
  border-radius: 2.8rem;
  color: #2b62ad;
}
.ph_box a .chevron-down {
  display: inline-block;
  vertical-align: middle;
  color: #2b62ad;
  line-height: 1;
  width: 1rem;
  height: 1rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  margin-left: 2.4rem;
}

@media screen and (max-width: 767px) {
  .pharmacy {
    margin-top: 10rem;
  }
  .pharmacy_link {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 7.2rem;
  }
  .ph_box a {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.pharmacy_wrap {
  width: 100%;
  max-width: var(--pcm);
  margin-right: auto;
  margin-left: auto;
}

.pharmacy_block {
  display: flex;
  flex-direction: row-reverse;
  gap: 4.8rem;
}
.pharmacy_block:first-child {
  padding-top: 8rem;
}
.pharmacy_block + .pharmacy_block {
  margin-top: 8rem;
  padding-top: 8rem;
  border-top: 1px solid #f1efeb;
}
.pharmacy_block .pharmacy_img {
  width: 50%;
  max-width: 52rem;
}
.pharmacy_block .pharmacy_desc {
  flex: 1;
}

.pharmacy_img .slider {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 1rem;
  overflow: hidden;
}
.pharmacy_img .slider .swiper-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}

.pharmacy_desc {
  letter-spacing: 0.1em;
}
.pharmacy_desc .open {
  margin-bottom: 1.6rem;
}
.pharmacy_desc .open p {
  display: inline-block;
  align-items: center;
  padding-right: 2em;
  padding-left: 2em;
  border: 1px solid #2b62ad;
  border-radius: 1.2rem;
  color: #2b62ad;
  font-size: 1.2rem;
  line-height: 2.4rem;
}
.pharmacy_desc h3 {
  font-size: clamp(2.4rem, 2.5vw, 3rem);
  font-weight: var(--mid);
}
.pharmacy_desc h3 p {
  margin-top: 1em;
  font-size: 1.6rem;
}
.pharmacy_desc .address, .pharmacy_desc .access, .pharmacy_desc .phone, .pharmacy_desc .email {
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
}
.pharmacy_desc .icon {
  display: inline-block;
  margin-right: 1rem;
}
.pharmacy_desc .icon_t img, .pharmacy_desc .icon img {
  width: auto;
  height: 2rem;
}
.pharmacy_desc .address {
  display: flex;
  flex-direction: row;
  margin-top: 3.6rem;
  line-height: 1.6;
}
.pharmacy_desc .address .icon_t {
  width: 2.4rem;
  padding-top: 0.5rem;
}
.pharmacy_desc .access {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}
.pharmacy_desc .access .icon_t {
  width: 2.4rem;
  padding-top: 0.5rem;
}
.pharmacy_desc .phone {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.pharmacy_desc .phone .tel, .pharmacy_desc .phone .fax {
  display: flex;
  align-items: flex-start;
}
.pharmacy_desc .email {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
}
.pharmacy_desc .biz_hour {
  margin-top: 3rem;
}

.biz_hour table {
  width: 100%;
}
.biz_hour th {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  background-color: #2b62ad;
  color: #fff;
  font-weight: normal;
  text-align: center;
}
.biz_hour th:first-child {
  border-radius: 0.4rem 0 0 0.4rem;
}
.biz_hour th:last-child {
  border-radius: 0 0.4rem 0.4rem 0;
}
.biz_hour th.min {
  width: 8%;
}
.biz_hour th.spc {
  width: 4%;
}
.biz_hour td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1efeb;
  color: #2b62ad;
  text-align: center;
}
.biz_hour td.fcg {
  color: #444;
}
.biz_hour td.fcr {
  color: #eb5438;
}
.biz_hour .attention {
  margin-top: 1em;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.4rem;
  line-height: 1.6;
}
.biz_hour .attention .mark {
  color: #eb5438;
}

/* swiper */
.thumbnail-outer {
  position: relative;
  padding-right: 3.8rem;
  padding-left: 3.8rem;
}

.swiper.slider-thumbnail {
  position: relative;
  margin-top: 2rem;
  padding: 0;
  overflow: hidden;
}
.swiper.slider-thumbnail .swiper-slide img {
  width: 100%;
  border-radius: 0.5rem;
  cursor: pointer;
}

.swiper-button-next {
  width: 30px;
  height: 30px;
  top: 50%;
  z-index: 10;
  background-color: #fcf8f0;
}

.swiper-button-prev {
  width: 30px;
  height: 30px;
  top: 50%;
  z-index: 10;
  background-color: #fcf8f0;
  left: 0 !important;
  background: url(../images/arrow_left.svg) no-repeat center/contain;
}

.swiper-button-next {
  right: 0 !important;
  background: url(../images/arrow_right.svg) no-repeat center/contain;
}
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev::after {
  display: none;
}

@media screen and (max-width: 767px) {
  .pharmacy_block {
    display: flex;
    flex-direction: column;
    gap: 4.8rem;
  }
  .pharmacy_block .pharmacy_img, .pharmacy_block .pharmacy_desc {
    width: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pharmacy_wrap {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .pharmacy_block {
    gap: 2.4rem;
  }
}
/* recruit
---------------------------------------------------------- */
.recruit {
  margin-top: 16rem;
}
.recruit .inner {
  background-color: #2b62ad;
  color: #fff;
  margin-top: -0.2rem;
  margin-bottom: -0.2rem;
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.recruit_intro {
  margin-top: 7.2rem;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 2.2;
  text-align: center;
}

.recruit_block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10rem;
  margin-top: 5.6rem;
}
.recruit_block li {
  width: 30rem;
  text-align: center;
}
.recruit_block li figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30rem;
}
.recruit_block li h3 {
  margin-top: 4rem;
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-weight: var(--mid);
}
.recruit_block li p {
  margin-top: 1em;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 2;
}

.recruit_btn {
  margin-top: 6.4rem;
}

@media screen and (max-width: 767px) {
  .recruit {
    margin-top: 10rem;
  }
  .recruit_intro {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .recruit_block {
    gap: 4.8rem;
  }
}
@media screen and (max-width: 1080px) {
  .recruit_block li figure {
    width: 100%;
    height: auto;
  }
  .recruit_block li figure img {
    width: 80%;
    height: auto;
  }
}
/* contact
---------------------------------------------------------- */
.contact {
  margin-top: 16rem;
  padding-bottom: 16rem;
}

.form_body {
  width: 100%;
  max-width: var(--pcm);
  margin-top: 8rem;
  margin-right: auto;
  margin-left: auto;
}

.form_group {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.form_group.ait {
  align-items: flex-start;
}
.form_group + .form_group {
  margin-top: 4.8rem;
}
.form_group .item {
  width: 25%;
  min-width: 20rem;
  font-weight: var(--mid);
}
.form_group.ait .item {
  padding-top: 1em;
}
.form_group .item .required, .form_group .item .any {
  display: inline-block;
  margin-right: 1rem;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  color: #fff;
  font-size: 1.4rem;
}
.form_group .item .required {
  background-color: #2b62ad;
}
.form_group .item .any {
  background-color: #acabab;
}
.form_group .input {
  flex: 1;
}

.form_body .agreement {
  margin-top: 8rem;
  text-align: center;
}
.form_body .agreement input[type=checkbox] {
  margin-right: 1rem;
}
.form_body .agreement a {
  text-decoration: underline;
}
.form_body .submit_btn {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
.form_body .submit_btn .btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  padding-right: 3rem;
  padding-left: 3rem;
  background-color: #2b62ad;
  border-radius: 2.4rem;
  border: 0;
  color: #fff;
  cursor: pointer;
}
.form_body .submit_btn .btn-submit::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  margin-left: 1rem;
}

input[type=text], input[type=email], input[type=password], input[type=tel] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input {
  box-sizing: border-box;
}
input[type=text], input[type=email], input[type=tel] {
  width: 100%;
  padding: 1em;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  box-sizing: border-box;
  width: 100%;
  height: 12em;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .form_group {
    flex-direction: column;
  }
  .form_group .item {
    width: 100%;
    margin-bottom: 1rem;
  }
  .form_group .input {
    width: 100%;
  }
}
/* mail.php
------------------------------ */
.check {
  margin-top: 8rem;
  padding-right: 4rem;
  padding-left: 4rem;
  padding-bottom: 12rem;
}

@media screen and (max-width: 767px) {
  .check {
    margin-top: 0;
    padding-right: 2rem;
    padding-left: 2rem;
    padding-bottom: 8rem;
  }
}
.form_check {
  width: 100%;
  max-width: 80rem;
  margin-top: 8rem;
  margin-right: auto;
  margin-left: auto;
}

.error_title {
  margin-bottom: 4rem;
  line-height: 2;
}

.error_item p.error_messe {
  color: #eb5438;
}
.error_item p + p {
  margin-top: 1em;
}

.form_check .back_btn {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}
.form_check .back_btn .btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  padding-right: 3rem;
  padding-left: 3rem;
  background-color: #999;
  border-radius: 2.4rem;
  border: 0;
  color: #fff;
  cursor: pointer;
}
.form_check .back_btn .btn-back::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
  margin-right: 1rem;
}

.check_title {
  margin-bottom: 4rem;
  font-size: clamp(2rem, 2vw, 3rem);
  font-weight: var(--mid);
  text-align: center;
}

.check_mess {
  line-height: 2;
  text-align: center;
}

.check_table {
  margin-top: 4rem;
}
.check_table table {
  width: 100%;
}
.check_table th, .check_table td {
  padding: 1em;
}
.check_table th {
  width: 20%;
  min-width: 20rem;
  color: #2b62ad;
  font-weight: var(--mid);
  text-align: left;
}

@media screen and (max-width: 767px) {
  .check_table tr, .check_table th, .check_table td {
    display: block;
  }
  .check_table th {
    width: 100%;
    padding: 1em 0 0;
  }
  .check_table td {
    padding: 1em 0;
    border-bottom: 1px solid #ccc;
  }
}
.gotosubmit {
  margin-top: 4rem;
  text-align: center;
}
.gotosubmit .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.form_check .gotosubmit .btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  padding-right: 3rem;
  padding-left: 3rem;
  background-color: #2b62ad;
  border-radius: 2.4rem;
  border: 0;
  color: #fff;
  cursor: pointer;
}
.form_check .gotosubmit .btn-submit::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  margin-left: 1rem;
}
.form_check .gotosubmit .btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  padding-right: 3rem;
  padding-left: 3rem;
  background-color: #999;
  border-radius: 2.4rem;
  border: 0;
  color: #fff;
  cursor: pointer;
}
.form_check .gotosubmit .btn-back::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
  margin-right: 1rem;
}

/* complete */
.complete {
  margin-top: 8rem;
  padding-right: 4rem;
  padding-left: 4rem;
  padding-bottom: 12rem;
}

@media screen and (max-width: 767px) {
  .complete {
    margin-top: 0;
    padding-right: 2rem;
    padding-left: 2rem;
    padding-bottom: 8rem;
  }
}
.complete_body {
  width: 100%;
  max-width: 80rem;
  margin-top: 8rem;
  margin-right: auto;
  margin-left: auto;
}
.complete_body .complete_title {
  margin-bottom: 4rem;
  font-size: clamp(2rem, 2vw, 3rem);
  font-weight: var(--mid);
  text-align: center;
}
.complete_body p {
  font-weight: var(--mid);
  line-height: 2;
}
.complete_body p.att {
  color: #d30000;
}
.complete_body .backtohome {
  max-width: 20rem;
  margin-top: 4rem;
  margin-right: auto;
  margin-left: auto;
}
.complete_body .backtohome a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  padding-right: 3rem;
  padding-left: 3rem;
  background-color: #2b62ad;
  border-radius: 2.4rem;
  border: 0;
  color: #fff;
}

/* footer
---------------------------------------------------------- */
.footer {
  position: relative;
  padding-top: 16rem;
  padding-bottom: 12rem;
  background-color: #fff;
  background-image: url(../images/contact_bg-footer.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  text-align: center;
}
.footer .f_logo img {
  width: auto;
  height: 16rem;
}
.footer .address {
  margin-top: 4rem;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: var(--mid);
}
.footer .address p + p {
  margin-top: 1em;
}
.footer .address a {
  text-decoration: underline;
}
.footer .cp {
  margin-top: 3rem;
  color: #666;
}
.footer .pagetop {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11.4rem;
  height: 9.6rem;
  background-color: #2b62ad;
  border-radius: 0.8rem 0 0 0;
}
.footer .pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.footer .pagetop a img {
  width: auto;
  height: 5.2rem;
}

@media screen and (max-width: 767px) {
  .footer {
    padding-top: 10rem;
    padding-bottom: 8rem;
  }
  .footer .f_logo img {
    width: 50%;
    height: auto;
  }
  .footer .address {
    line-height: 1.6;
  }
  .footer .cp {
    font-size: 1.4rem;
  }
  .footer .pagetop {
    width: 6.4rem;
    height: 4.8rem;
  }
  .footer .pagetop a img {
    width: auto;
    height: 3rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .footer .pagetop {
    width: 8rem;
    height: 6.4rem;
  }
  .footer .pagetop a img {
    width: auto;
    height: 3.6rem;
  }
}
/* modal
---------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-right: 2rem;
  padding-left: 2rem;
  background-color: #2b62ad;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 3rem;
  padding: 8rem;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  -webkit-overflow-scrolling: touch;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .modal-content {
    max-height: 70vh;
    padding: 4rem 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .modal-content {
    max-height: 80vh;
    padding: 4rem 3rem;
  }
}
.modal-close {
  position: absolute;
  top: 3vw;
  right: 3vw;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}
.modal-close:hover {
  color: #ccc;
}

.cross {
  display: block;
  position: relative;
  width: 5rem;
  height: 5rem;
}
.cross::before, .cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.1rem;
  height: 5rem;
  background: #fff;
}
.cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-content {
  color: #595757;
}

.company_status, .job_description {
  margin-top: 5.4rem;
}

.company_status a, .job_description a {
  text-decoration: underline;
}

.company_status table, .job_description table {
  width: 100%;
  border-top: 1px solid #eaeaea;
}

.company_status th, .job_description th {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid #eaeaea;
}

.company_status th, .job_description th {
  width: 18%;
  min-width: 15rem;
  padding-left: 2rem;
  color: #2b62ad;
  font-weight: normal;
  text-align: left;
}

.company_status td, .job_description td {
  padding-top: 2.8rem;
  padding-right: 2rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid #eaeaea;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .company_status tr, .job_description tr, .company_status th, .job_description th, .company_status td, .job_description td {
    display: block;
  }
  .company_status th, .job_description th {
    width: 100%;
    padding-top: 2.4rem;
    padding-bottom: 1.6rem;
    padding-left: 0;
    border-bottom: 0;
  }
  .company_status td, .job_description td {
    padding-top: 0;
    padding-bottom: 2.4rem;
  }
}
.policy_intro {
  margin-top: 5.4rem;
  line-height: 2.2;
}

.policy {
  margin-top: 3.2rem;
}
.policy table {
  width: 100%;
  border-top: 1px solid #eaeaea;
}
.policy th {
  width: 10rem;
  border-bottom: 1px solid #eaeaea;
  color: #2b62ad;
  font-size: 3.2rem;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
}
.policy td {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #eaeaea;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .policy tr, .policy th, .policy td {
    display: block;
  }
  .policy th {
    width: 100%;
    padding-top: 2.4rem;
    border-bottom: 0;
  }
}
/* -------------------------------------------------------
Break Point
---------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .pc, .tab {
    display: none;
  }
}
/* end smartphone only */
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* end TAB & PC */
/* end TAB only */
@media screen and (min-width: 1081px) {
  .sp, .tab {
    display: none;
  }
}
/* end PC */

/*# sourceMappingURL=style.css.map */
