@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif !important;
  font-weight: 400;
  color: #333;
  font-weight: 400;
  line-height: 1.4;
}

main {
  position: relative;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

button {
  border: none;
  background-color: unset;
}

ul {
  list-style-type: none;
}

/* 共通 */

.st-wrap {
  padding: 0 0 120px;
}

.st-head_type01 {
  position: relative;
  width: 100%;
  padding: 70px 0 115px;
  text-align: center;
  background-color: #4d4398;
}
.st-head_type01::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-top: 228px solid transparent;
  border-right: 100vw solid #fff;
}
.st-head_type01::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 376px solid transparent;
  border-left: 183px solid #4d4398;
  mix-blend-mode: multiply;
  opacity: .5;
}
.st-head_type01 > * {
  position: relative;
  display: inline-block;
  height: 74px;
  padding: 8px 32px;
  font-size: 40px;
  font-weight: 700;
  color: #4d4398;
  background-color: #fff;
}
.st-head_type01 > *::before {
  content: "";
  position: absolute;
  top: 0;
  left: -36px;
  border-top: 74px solid transparent;
  border-right: 36px solid #fff;
}
.st-head_type01 > *::after {
  content: "";
  position: absolute;
  top: 0;
  right: -36px;
  border-bottom: 74px solid transparent;
  border-left: 36px solid #fff;
}

.st-head_type02 {
  text-align: center;
}
.st-head_type02 h2 {
  position: relative;
  display: inline-block;
  padding: 0 48px;
  font-size: 40px;
  font-weight: 700;
}
.st-head_type02 h2::before,
.st-head_type02 h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 74px;
  height: 3px;
  background-color: #4d4398;
  transform: rotate(120deg);
}
.st-head_type02 h2::before {
  left: -55px;
}
.st-head_type02 h2::after {
  right: -55px;
}

@media screen and (max-width: 768px) {
  .st-wrap {
    padding: 0 0 64px;
  }

  .st-head_type01 {
    padding: 24px 0 15px;
  }
  .st-head_type01::before {
    border-top: 100px solid transparent;
    border-right: 160vw solid #fff;
  }
  .st-head_type01::after {
    border-bottom: 120px solid transparent;
    border-left: 70px solid #4d4398;
  }
  .st-head_type01 > * {
    height: 61px;
    padding: 16px 8px;
    font-size: 20px;
  }
  .st-head_type01 > *::before {
    border-top: 61px solid transparent;
  }
  .st-head_type01 > *::after {
    border-bottom: 61px solid transparent;
  }

  .st-head_type02 h2 {
    padding: 0 32px;
    font-size: 20px;
  }
  .st-head_type02 h2::before,
  .st-head_type02 h2::after {
    width: 40px;
  }
  .st-head_type02 h2::before {
    left: -30px;
  }
  .st-head_type02 h2::after {
    right: -30px;
  }
}

.sp-only_bl {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-only_bl {
    display: none;
  }
  .sp-only_bl {
    display: block;
  }
}

/* header */

header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 10;
  background-color: #fff;
}

.header-logo {
  width: 280px;
  margin-left: 31px;
}

.header-contact {
  position: relative;
  display: flex;
}
.header-contact:hover {
  opacity: .8;
}
.header-contact_text {
  position: relative;
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 60px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  background-color: #4d4398;
}
.header-contact_text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -39px;
  border-top: 80px solid transparent;
  border-right: 39px solid #4d4398;
}
.header-contact_text::after {
  content: "";
  position: absolute;
  top: 0;
  right: -39px;
  border-bottom: 80px solid transparent;
  border-left: 39px solid #4d4398;
}
.header-contact_arrow {
  position: relative;
  display: block;
  height: 80px;
  margin-left: 39px;
  padding: 20px;
  background-color: #333;
}
.header-contact_arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -39px;
  border-top: 80px solid transparent;
  border-right: 39px solid #333;
}
.header-contact_arrow img {
  width: 40px;
}

@media screen and (max-width: 768px) {
  .header-logo {
    width: 120px;
  }

  .header-contact::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    width: 20px;
    height: 100%;
    background-color: #4d4398;
    transform: skewX(-17deg);
  }
  .header-contact::after {
    content: "";
    position: absolute;
    right: 23px;
    top: 0;
    width: 20px;
    height: 100%;
    background-color: #333;
    transform: skewX(-17deg);
  }

  .header-contact_text {
    height: 56px;
    padding: 0 30px;
    font-size: 12px;
  }
  .header-contact_text::before {
    left: -17.5px;
    border-top: 56px solid transparent;
    border-right: 17.5px solid #4d4398;
  }
  .header-contact_text::after {
    right: -17.5px;
    border-bottom: 56px solid transparent;
    border-left: 17.5px solid #4d4398;
  }
  .header-contact_arrow {
    height: 56px;
    margin-left: 17.5px;
    padding: 20px 9px;
  }
  .header-contact_arrow::before {
    left: -17.5px;
    border-top: 56px solid transparent;
    border-right: 17.5px solid #333;
  }
  .header-contact_arrow img {
    width: 16px;
  }
}

/* footer */

footer {
  padding: 40px;
  background-color: #232323;
}
footer p {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: 14px;
  color: #fff;
}
footer a {
  display: inline-block;
  margin-right: 16px;
  color: #00BAEF;
  text-decoration: underline;
}
footer a:hover {
  opacity: .8;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 24px 24px 8px;
  }
  footer p {
    font-size: 10px;
  }
  footer a {
    display: block;
    margin: 0 0 16px;
  }
}

/* .pagetop */

.pagetop {
  position: fixed;
  bottom: 117px;
  right: 16px;
  width: 98px;
  height: 85px;
  cursor: pointer;
  filter: drop-shadow(0px 0px 26px rgba(0, 0, 0, 0.15));
  background-image: url("../images/pagetop.png");
  background-size: cover;
  opacity: 0;
  z-index: 10;
  transition: opacity .2s;
}
.pagetop.show {
  opacity: 1;
}
.pagetop.absolute {
  position: absolute;
}
.pagetop.show:hover {
  opacity: .8;
}

@media screen and (max-width: 768px) {
  .pagetop {
    bottom: 9px;
    right: 26px;
    background-image: url("../images/pagetop_sp.png");
  }
}

/* .keyvisual */

.keyvisual {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .keyvisual {
    margin-top: 56px;
  }

  .keyvisual-main {
    position: relative;
    height: 280px;
    background-image: url("../images/kv_sp_c.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  .keyvisual-main_wrap {
    position: absolute;
    top: 88px;
    right: 0;
    min-width: 163px;
    width: 43.5vw;
  }

  .keyvisual-main_img {
    background-color: #fff;
  }
  .keyvisual-main_img img {
    width: 163px;
  }

  .keyvisual-main_text {
    padding: 16px 11.5px 23px;
    background-color: #4d4398;
  }
  .keyvisual-main_text p {
    width: 163px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }


  .keyvisual-content {
    padding: 19px 16px;
    background-color: #4d4398;
  }
  .keyvisual-content img {
    width: 100%;
    max-width: 341px;
    margin: 0 auto;
  }
}

/* .contact */

.contact {
  position: relative;
  width: 100%;
  padding: 78px 0 83px;
  background-color: #4d4398;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 241px solid transparent;
  border-left: 116px solid #4d4398;
  mix-blend-mode: multiply;
  z-index: 1;
}
.contact::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-top: 241px solid transparent;
  border-right: 116px solid #4d4398;
  mix-blend-mode: multiply;
  z-index: 1;
}

.contact-btn {
  position: relative;
  display: flex;
  width: 671px;
  margin: 0 auto;
  background-color: #fff;
  z-index: 2;
}
.contact-btn:hover {
  opacity: .8;
}

.contact-text {
  width: calc(100% - 80px);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #DC0032;
  line-height: 80px;
}

.contact-arrow {
  display: block;
  width: 80px;
  height: 100%;
  padding: 20px;
  background-color: #333333;
}
.contact-arrow img {
  width: 40px;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 56px 0;
  }
  .contact::before {
    border-bottom: 192px solid transparent;
    border-left: 93px solid #4d4398;
  }
  .contact::after {
    border-top: 192px solid transparent;
    border-right: 93px solid #4d4398;
  }

  .contact-btn {
    width: calc(100% - 32px);
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-arrow {
    padding: 28px;
  }
  .contact-arrow img {
    width: 24px;
  }
}

/* .treatment */

.treatment-table {
  max-width: 848px;
  margin: 5px auto 0;
}
.treatment-table table {
  width: 100%;
  border-collapse: collapse;
}
.treatment-table tr {
  font-size: 20px;
  border-bottom: 1px solid rgba(51, 51, 51, .7);
}
.treatment-table th {
  text-align: left;
  width: 304px;
  padding: 16px 32px 33px;
}
.treatment-table td {
  width: calc(100% - 304px);
  padding: 16px 40px 16px;
  font-weight: 700;
}
.treatment-table td .text_big {
  font-size: 32px;
}
.treatment-table .annotation {
  margin-top: 8px;
  text-align: right;
  font-size: 16px;
}

.treatment-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1024px;
  margin: 50px auto 0;
}
.treatment-item {
  width: calc(50% - 16px);
  padding: 32px 24px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}
.treatment-item h3 {
  margin-top: 24px;
  font-size: 32px;
  font-weight: 700;
  color: #DC0032;
}
.treatment-item > p {
  margin-top: 16px;
  font-size: 16px;
}
.treatment-text {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 16px;
}
.treatment-text > p {
  font-size: 20px;
  font-weight: 700;
}
.treatment-text > p .text_big {
  font-size: 32px;
}
.treatment-text > p + p {
  margin: 0 0 6px 11px;
  font-size: 16px;
}

@media screen and (min-width: 769px) {
  .treatment-item:nth-child(n + 3) {
    margin-top: 56px;
  }
}

@media screen and (max-width: 768px) {
  .treatment-table {
    max-width: calc(100% - 32px);
    margin: 40px auto 0;
  }
  .treatment-table tr {
    font-size: 16px;
  }
  .treatment-table th {
    width: 152px;
    padding: 22px 0 22px 16px;
  }
  .treatment-table td {
    width: calc(100% - 152px);
    padding: 16px 0 16px 7px;
    font-size: 14px;
  }
  .treatment-table td .text_big {
    font-size: 24px;
  }
  .treatment-table .annotation {
    margin-top: 16px;
  }
  
  .treatment-wrap {
    display: block;
    max-width: calc(100% - 32px);
    margin: 48px auto 0;
  }
  .treatment-item {
    width: 100%;
  }
  .treatment-item + .treatment-item {
    margin-top: 32px;
  }
  .treatment-item h3 {
    font-size: 24px;
  }
}

/* .base */

.base-content {
  margin-top: 5px;
}

.base-map {
  width: 100%;
  max-width: 1023px;
  margin: 0 auto;
}

.base-wrap {
  max-width: 1023px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.base-item {
  display: flex;
  width: calc((100% / 4) - 16px);
  padding: 16px;
  background-color: #E1E1E1;
}

.base-num {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 16px;
}
.base-num img {
  width: 40px;
}
.base-num span {
  position: absolute;
  top: calc(50% - 3px);
  left: 50%;
  font-size: 16px;
  font-weight: 700;
  color: #DC0032;
  transform: translateX(-50%);
}

.base-text {
  font-family: 'Noto Sans JP', sans-serif !important;
}
.base-text h3 {
  font-size: 16px;
  font-weight: 700;
}
.base-text p {
  margin-top: 4px;
  font-size: 14px;
}

.base-gourmet {
  display: flex;
  max-width: 1024px;
  margin: 80px auto 0;
}

.base-gourmet_head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 35%;
  background-color: #4d4398;
}
.base-gourmet_head img {
  width: 112px;
}
.base-gourmet_head h3 {
  margin-top: 13px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.base-gourmet_img {
  width: 65%;
}

@media screen and (min-width: 769px) {
  .base-item:nth-child(n + 5) {
    margin-top: 16px;
  }
}

@media screen and (max-width: 768px) {
  .base-content {
    margin-top: 20px;
  }
  
  .base-map {
    width: calc(100% - 32px);
    margin: 0 auto;
  }
  
  .base-wrap {
    max-width: calc(100% - 32px);
    margin: 24px auto 0;
  }
  
  .base-item {
    display: flex;
    width: calc(50% - 8px);
    padding: 8px;
  }
  .base-item:nth-child(n + 3) {
    margin-top: 16px;
  }
  
  .base-num {
    margin-right: 8px;
  }
  
  .base-text h3 {
    font-size: 14px;
  }
  .base-text p {
    font-size: 12px;
  }
  
  .base-gourmet {
    display: block;
    margin: 48px 16px 0;
  }
  
  .base-gourmet_head {
    width: 100%;
    padding: 16px 35px 12px;
  }
  .base-gourmet_head img {
    width: 80px;
  }
  .base-gourmet_head h3 {
    margin: 0 0 0 24px;
    text-align: left;
    font-size: 24px;
  }
  
  .base-gourmet_img {
    width: 100%;
  }
}

/* .recruit */

.recruit {
  padding-top: 120px;
}
.recruit table {
  max-width: 768px;
  margin: 64px auto 0;
  border-collapse: collapse;
}
.recruit tr {
  font-family: 'Noto Sans JP', sans-serif !important;
  border-bottom: 1px solid #DCDCDC;
}
.recruit th {
  width: 167px;
  padding: 24px 17px;
  text-align: left;
  vertical-align: baseline;
  font-size: 16px;
  font-weight: 700;
  color: #DC0032;
}
.recruit td {
  width: calc(100% - 167px);
  padding: 24px 29px 16px;
}
.recruit td p {
  font-size: 16px;
}
.recruit td .annotation_list {
  margin-top: 16px;
}
.recruit td .annotation_list.mt_0 {
  margin-top: 0;
}
.recruit td .annotation_list li {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  color: #787878;
}
.recruit td .annotation_list li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.recruit td dl {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}
.recruit td dt {
  flex-shrink: 0;
  position: relative;
  padding-right: 30px;
  margin-right: 16px;
}
.recruit td dt::before {
  content: "…";
  position: absolute;
  top: 0;
  right: 0;
}
.recruit td p + *,
.recruit td ul + * {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .recruit {
    padding-top: 64px;
  }
  .recruit table {
    max-width: calc(100% - 32px);
    margin: 24px auto 0;
  }
  .recruit th {
    width: 86px;
    padding: 24px 9px;
    font-size: 14px;
  }
  .recruit td {
    width: calc(100% - 86px);
    padding: 24px 24px 16px;
  }
}

/* .about */

.about {
  max-width: 848px;
  margin: 120px auto;
  padding: 24px 41px;
  border-top: 2px solid rgba(51, 51, 51, .7);
  border-bottom: 2px solid rgba(51, 51, 51, .7);
}

.about-logo {
  width: 350px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  align-items: flex-end;
}
.about-content img {
  width: 79px;
}
.about-content p {
  max-width: 584px;
  margin-left: 56px;
  font-size: 16px;
}

.about-mark {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 496px;
  margin: 24px auto 0;
}
.about-mark img {
  width: calc((100% / 3) - 32px);
}

@media screen and (max-width: 768px) {
  .about {
    max-width: calc(100% - 32px);
    margin: 80px auto 48px;
    padding: 24px 8px;
  }
  
  .about-logo {
    width: 282px;
  }
  
  .about-content {
    align-items: flex-start;
    margin-top: 30px;
  }
  .about-content img {
    width: 63px;
  }
  .about-content p {
    margin-left: 16px;
    font-size: 14px;
  }
  
  .about-mark {
    max-width: 320px;
    margin: 16px auto 0;
  }
  .about-mark img {
    width: calc((100% / 3) - 16px);
  }
}

/* .faq */

.faq-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1024px;
  margin: 64px auto 0;
}

.faq-item {
  width: calc(50% - 16px);
  padding: 32px;
  background-color: #fff;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, .05);
  border-radius: 16px;
}
.faq-item.last {
  width: 100%;
}
.faq-item .question {
  display: flex;
  align-items: flex-start;
  font-weight: 700;
  color: #DC0032;
}
.faq-item .question span {
  font-style: italic;
  font-size: 24px;
  line-height: 1;
}
.faq-item .question p {
  margin-left: 6px;
  font-size: 20px;
  line-height: 1.2;
}
.faq-item .answer {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
}
.faq-item .answer span {
  font-style: italic;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.faq-item .answer p {
  margin-left: 6px;
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  .faq-item:nth-child(n + 3) {
    margin-top: 64px;
  }
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 0 0 48px;
  }
  
  .faq-wrap {
    display: block;
    max-width: calc(100% - 32px);
    margin: 24px auto 0;
  }
  
  .faq-item {
    width: 100%;
  }
  .faq-item + .faq-item {
    margin-top: 24px;
  }
}