@charset "UTF-8";
/* Sass Document */
/* ----------------------------------------------------------------------------------------------------
*	はじめての方へ
* --------------------------------------------------------------------------------------------------*/
.first .large_image {
  margin: 0;
  width: 100%;
}
.first .large_image img {
  width: 100%;
}

.greeting {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto 1fr;
  gap: 0px 0px;
  grid-template-areas: "txt img" "btn img";
  padding-bottom: 120px;
}
@media screen and (max-width: 767.98px) {
  .greeting {
    display: block;
    padding-left: 6.6666666667%;
    padding-right: 6.6666666667%;
    padding-bottom: 40px;
  }
}
.greeting .txt_wrapper {
  grid-area: txt;
  max-width: 550px;
  margin-left: auto;
}
@media screen and (max-width: 767.98px) {
  .greeting .txt_wrapper {
    max-width: inherit;
    margin-left: 0;
  }
}
.greeting .section_ttl + .txt {
  margin-top: 30px;
}
@media screen and (max-width: 767.98px) {
  .greeting .section_ttl + .txt {
    margin-top: 10px;
  }
}
.greeting .txt + .txt {
  margin-top: 1.4em;
}
.greeting .txt a.underline {
  color: #032730;
}
.greeting .img_wrapper {
  margin: 0;
  grid-area: img;
  margin-left: 78px;
}
@media screen and (max-width: 767.98px) {
  .greeting .img_wrapper {
    margin-left: 0;
    margin-top: 20px;
  }
}
.greeting .img_wrapper img {
  width: 100%;
}
.greeting .img_wrapper img + img {
  margin-top: 22px;
}
@media screen and (max-width: 767.98px) {
  .greeting .img_wrapper img + img {
    margin-top: 10px;
  }
}
.greeting .btn_wrapper {
  grid-area: btn;
  width: 550px;
  margin-left: auto;
  margin-top: 60px;
}
@media screen and (max-width: 767.98px) {
  .greeting .btn_wrapper {
    width: auto;
    margin-top: 20px;
  }
}

.about_ohanawith {
  overflow: hidden;
  padding: 60px 0;
}
@media screen and (max-width: 767.98px) {
  .about_ohanawith {
    padding: 30px 0;
  }
}
.about_ohanawith .txt + .txt {
  margin-top: 1.4em;
}
.about_ohanawith .about {
  display: flex;
  padding-bottom: 60px;
}
@media screen and (max-width: 767.98px) {
  .about_ohanawith .about {
    display: block;
    padding-bottom: 30px;
  }
}
.about_ohanawith .about .txt_wrapper {
  max-width: 550px;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .about_ohanawith .about .txt_wrapper {
    max-width: inherit;
  }
}
.about_ohanawith .about .section_ttl + .txt {
  margin-top: 30px;
}
@media screen and (max-width: 767.98px) {
  .about_ohanawith .about .section_ttl + .txt {
    margin-top: 10px;
  }
}
.about_ohanawith .about .img_wrapper {
  flex-grow: 1;
  margin: 0;
  margin-right: calc(50% - 50vw);
  margin-left: 76px;
}
@media screen and (max-width: 767.98px) {
  .about_ohanawith .about .img_wrapper {
    margin: 20px 0 0;
  }
}
.about_ohanawith .about .img_wrapper img {
  width: 100%;
}
.about_ohanawith .point {
  padding: 40px 50px;
  display: flex;
  flex-direction: row-reverse;
  background-color: #fff;
}
@media screen and (max-width: 767.98px) {
  .about_ohanawith .point {
    display: block;
    padding: 15px;
  }
}
.about_ohanawith .point .ttl {
  color: #07a5b0;
  font-weight: 700;
  font-size: 2.8rem;
}
@media screen and (max-width: 767.98px) {
  .about_ohanawith .point .ttl {
    font-size: 2rem;
  }
}
.about_ohanawith .point .ttl + .txt {
  margin-top: 28px;
}
@media screen and (max-width: 767.98px) {
  .about_ohanawith .point .ttl + .txt {
    margin-top: 10px;
  }
}
.about_ohanawith .point .txt {
  letter-spacing: 0.04em;
}
.about_ohanawith .point .img_wrapper {
  width: 460px;
  flex-shrink: 0;
  margin: 0;
  margin-right: 40px;
}
@media screen and (max-width: 767.98px) {
  .about_ohanawith .point .img_wrapper {
    width: auto;
    margin-top: 15px;
    margin-right: 0;
  }
}
.about_ohanawith .point .img_wrapper img {
  width: 100%;
}
.about_ohanawith .btn_list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
@media screen and (max-width: 767.98px) {
  .about_ohanawith .btn_list {
    margin-top: 15px;
    display: block;
  }
}
.about_ohanawith .btn_item {
  width: 265px;
}
@media screen and (max-width: 767.98px) {
  .about_ohanawith .btn_item {
    width: auto;
  }
  .about_ohanawith .btn_item + .btn_item {
    margin-top: 10px;
  }
}
.about_ohanawith .btn_item .btn {
  width: 100%;
}

.abtou_safety {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto 1fr;
  gap: 0px 0px;
  grid-template-areas: "txt img" "btn img";
  padding: 120px 0 80px;
}
@media screen and (max-width: 767.98px) {
  .abtou_safety {
    display: block;
    padding: 40px 6.6666666667% 40px;
  }
}
.abtou_safety .section_ttl + .txt {
  margin-top: 38px;
}
@media screen and (max-width: 767.98px) {
  .abtou_safety .section_ttl + .txt {
    margin-top: 10px;
  }
}
.abtou_safety .txt_wrapper {
  grid-area: txt;
  max-width: 550px;
  margin-left: auto;
}
@media screen and (max-width: 767.98px) {
  .abtou_safety .txt_wrapper {
    max-width: inherit;
    margin-left: 0;
  }
}
.abtou_safety .img_wrapper {
  grid-area: img;
  margin: 0;
  margin-left: 78px;
}
@media screen and (max-width: 767.98px) {
  .abtou_safety .img_wrapper {
    margin-left: 0;
    margin-top: 20px;
  }
}
.abtou_safety .img_wrapper img {
  width: 100%;
}
.abtou_safety .btn_wrapper {
  grid-area: btn;
  width: 550px;
  margin-left: auto;
  margin-top: 29px;
}
@media screen and (max-width: 767.98px) {
  .abtou_safety .btn_wrapper {
    margin-top: 20px;
    width: auto;
  }
}
.abtou_safety .btn_wrapper .btn {
  width: 100%;
}
.abtou_safety .txt_over {
  margin-top: 30px;
  text-align: center;
  background-color: #f4f5f7;
  padding: 8px;
}
@media screen and (max-width: 767.98px) {
  .abtou_safety .txt_over {
    margin-top: 10px;
  }
}

.about_fun,
.about_training {
  padding: 80px 0;
}
@media screen and (max-width: 767.98px) {
  .about_fun,
.about_training {
    padding: 40px 6.6666666667%;
  }
}

.about_fun {
  padding-bottom: 0;
}

.about_contetn {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto auto;
  gap: 0px 0px;
  grid-template-areas: "txt img" "btn btn";
}
@media screen and (max-width: 767.98px) {
  .about_contetn {
    display: block;
  }
}
.about_contetn .section_ttl + .txt {
  margin-top: 38px;
}
@media screen and (max-width: 767.98px) {
  .about_contetn .section_ttl + .txt {
    margin-top: 10px;
  }
}
.about_contetn .txt + .txt {
  margin-top: 1.4em;
}
.about_contetn .txt_wrapper {
  grid-area: txt;
  max-width: 550px;
  margin-left: auto;
}
@media screen and (max-width: 767.98px) {
  .about_contetn .txt_wrapper {
    max-width: inherit;
    margin-left: 0;
  }
}
.about_contetn .img_wrapper {
  grid-area: img;
  margin: 0;
  margin-left: 78px;
}
@media screen and (max-width: 767.98px) {
  .about_contetn .img_wrapper {
    margin-left: 0;
    margin-top: 20px;
  }
}
.about_contetn .img_wrapper img {
  width: 100%;
  height: auto;
}
.about_contetn .btn_wrapper {
  grid-area: btn;
  width: 1100px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767.98px) {
  .about_contetn .btn_wrapper {
    width: auto;
    margin-top: 20px;
  }
}
.about_contetn .btn_wrapper .btn_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 13px;
}
@media screen and (max-width: 767.98px) {
  .about_contetn .btn_wrapper .btn_list {
    display: block;
  }
}
.about_contetn .btn_wrapper .btn_item {
  width: 265px;
}
@media screen and (max-width: 767.98px) {
  .about_contetn .btn_wrapper .btn_item {
    width: 100%;
  }
  .about_contetn .btn_wrapper .btn_item + .btn_item {
    margin-top: 10px;
  }
}
.about_contetn .btn_wrapper .btn_item .btn {
  width: 100%;
}

/* ----------------------------------------------------------------------------------------------------
*	名前の由来と想い
* --------------------------------------------------------------------------------------------------*/
.name .page_body {
  padding-top: 110px;
}
@media screen and (max-width: 767.98px) {
  .name .page_body {
    padding-top: 32px;
  }
}

.name_about {
  padding-bottom: 80px;
}
@media screen and (max-width: 767.98px) {
  .name_about {
    padding-bottom: 40px;
  }
}

.name_about_content {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .name_about_content {
    display: block;
  }
}
.name_about_content .txt_wrapper .section_ttl + .txt {
  margin-top: 30px;
}
@media screen and (max-width: 767.98px) {
  .name_about_content .txt_wrapper .section_ttl + .txt {
    margin-top: 10px;
  }
}
.name_about_content .img_wrapper {
  width: 631px;
  margin: 10px 0 0 60px;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .name_about_content .img_wrapper {
    width: 100%;
    margin: 20px 0 0;
  }
}
.name_about_content .img_wrapper img {
  width: 100%;
}

.name_block:last-of-type .txt_wrapper {
  padding-bottom: 0;
}
.name_block figure {
  margin: 0 auto;
}
.name_block img {
  width: 100%;
}
.name_block .txt_wrapper {
  padding-top: 20px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767.98px) {
  .name_block .txt_wrapper {
    padding-top: 10px;
    padding-bottom: 40px;
  }
}
.name_block .txt_wrapper .section_ttl + .txt {
  margin-top: 30px;
}
@media screen and (max-width: 767.98px) {
  .name_block .txt_wrapper .section_ttl + .txt {
    margin-top: 10px;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	スタッフ紹介
* --------------------------------------------------------------------------------------------------*/
.staff .page_body {
  padding-bottom: 0;
}

.staff_block {
  padding: 80px 0;
}
@media screen and (max-width: 767.98px) {
  .staff_block {
    padding: 40px 0;
  }
}
.staff_block:nth-of-type(even) {
  background-color: #f4f5f7;
}
/*.staff_block:nth-of-type(even) .staff_message {
  background-color: #fff;
}
.staff_block:nth-of-type(odd) .staff_message {
  background-color: #f4f5f7;
}*/
.staff_block:last-of-type {
  padding-bottom: 120px;
}
@media screen and (max-width: 767.98px) {
  .staff_block:last-of-type {
    padding-bottom: 40px;
  }
}

.staff_block_content {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .staff_block_content {
    display: block;
  }
}
.staff_block_content .txt_wrapper {
  flex-grow: 1;
}
.staff_block_content .img_wrapper {
  margin: 0 0 0 60px;
  flex-shrink: 0;
  width: 472px;
}
@media screen and (max-width: 767.98px) {
  .staff_block_content .img_wrapper {
    width: 100%;
    margin: 20px 0 0 0;
  }
}
.staff_block_content .img_wrapper img {
  width: 100%;
}
.staff_block_content .img_wrapper img + img {
  margin-top: 20px;
}

.staff_name_box {
  border-bottom: 2px solid #07a5b0;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.staff_name_box .staff_name {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767.98px) {
  .staff_name_box .staff_name {
    font-size: 2rem;
  }
}
.staff_name_box .staff_name .en {
  font-size: 1.6rem;
  margin-left: 30px;
}
@media screen and (max-width: 767.98px) {
  .staff_name_box .staff_name .en {
    font-size: 1rem;
    margin-left: 1em;
  }
}
.staff_name_box .insta_link {
  width: 2.5rem;
}

.staff_catch {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0 1rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767.98px) {
  .staff_catch {
    font-size: 1.3rem;
    gap: 0 .5rem;
  }
}
.staff_catch::before {
  content: '';
  width: 1.4rem;
  height: 1.4rem;
  border-radius: .7rem;
  background-color: #07A5B7;
  flex: none;
}
@media screen and (max-width: 767.98px) {
  .staff_catch::before {
    width: 1rem;
    height: 1rem;
  }
}

.staff_introduction {
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 767.98px) {
  .staff_introduction {
    margin-top: 5px;
  }
}
.staff_introduction td,
.staff_introduction th {
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 10px 0;
}
@media screen and (max-width: 767.98px) {
  .staff_introduction td,
.staff_introduction th {
    font-size: 1.2rem;
    padding: 5px 0;
  }
}
.staff_introduction th {
  text-align: left;
  font-weight: 700;
  vertical-align: top;
  padding-right: 1em;
}
@media screen and (max-width: 767.98px) {
  .staff_introduction th {
    width: 8em;
  }
}
.staff_introduction td {
  vertical-align: top;
}
.staff_introduction td li {
  line-height: 1.5;
}
.staff_introduction td li + li {
  margin-top: 10px;
}
@media screen and (max-width: 767.98px) {
  .staff_introduction td li + li {
    margin-top: 5px;
  }
}
.staff_introduction td .sub {
  text-indent: 1em;
}

.staff_message {
  margin-top: 20px;
  padding: 20px 30px;
  border: solid 1px #07A5B7;
}
@media screen and (max-width: 767.98px) {
  .staff_message {
    margin-top: 10px;
    padding: 15px;
  }
}
.staff_message + ..staff_message {
  margin-top: 20px;
}
.staff_message .ttl {
  font-weight: 700;
  color: #07A5B7;
}

/* ----------------------------------------------------------------------------------------------------
*	会社概要
* --------------------------------------------------------------------------------------------------*/
.company_content {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  .company_content {
    display: block;
  }
}

.campany_img {
  height: 100%;
  width: 50%;
  flex-shrink: 0;
  padding-left: 57px;
}
@media screen and (max-width: 767.98px) {
  .campany_img {
    margin-top: 30px;
    padding-left: 0;
    width: 100%;
  }
}
.campany_img > div {
  display: flex;
  flex-direction: column;
  width: 605px;
}
@media screen and (max-width: 767.98px) {
  .campany_img > div {
    width: auto;
    flex-direction: row;
  }
}
.campany_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.company_txt {
  width: 50%;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .company_txt {
    width: auto;
    font-size: 1.2rem;
    padding-left: 6.6666666667%;
    padding-right: 6.6666666667%;
  }
}
.company_txt > div {
  width: 568px;
  margin-left: auto;
}
@media screen and (max-width: 767.98px) {
  .company_txt > div {
    width: auto;
  }
}

.company_info {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.company_info a {
  color: currentColor;
  text-decoration: none;
}
@media (any-hover) {
  .company_info a {
    transition: 0.3s;
  }
  .company_info a:hover {
    opacity: 0.7;
  }
}
.company_info th {
  text-align: left;
  width: 218px;
  vertical-align: top;
}
@media screen and (max-width: 767.98px) {
  .company_info th {
    width: 106px;
    padding-top: 1em;
  }
}
.company_info td,
.company_info th {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f4f5f7;
  line-height: 1.4444444444;
}
@media screen and (max-width: 767.98px) {
  .company_info td,
.company_info th {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.company_info .btn {
  margin-top: 15px;
}
@media screen and (max-width: 767.98px) {
  .company_info tr:first-of-type th,
.company_info tr:first-of-type td {
    padding-top: 0;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	アクセス
* --------------------------------------------------------------------------------------------------*/
.access_content {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  .access_content {
    display: block;
  }
}

.access_txt {
  width: 50%;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .access_txt {
    width: auto;
    font-size: 1.2rem;
    padding-left: 6.6666666667%;
    padding-right: 6.6666666667%;
  }
}
.access_txt > div {
  width: 568px;
  margin-left: auto;
}
@media screen and (max-width: 767.98px) {
  .access_txt > div {
    width: auto;
  }
}
.access_txt .note {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767.98px) {
  .access_txt .note {
    margin-top: 15px;
    font-size: 1rem;
  }
}
.access_txt .note a {
  color: currentColor;
  text-decoration: none;
}
.access_txt .note li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.4285714286;
}

.access_info {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.access_info th {
  text-align: left;
  width: 218px;
  vertical-align: top;
}
@media screen and (max-width: 767.98px) {
  .access_info th {
    width: 122px;
    padding-right: 1em;
  }
}
.access_info td,
.access_info th {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f4f5f7;
  line-height: 1.4444444444;
}
@media screen and (max-width: 767.98px) {
  .access_info td,
.access_info th {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.access_info .btn {
  margin-top: 15px;
}
@media screen and (max-width: 767.98px) {
  .access_info tr:first-of-type th,
.access_info tr:first-of-type td {
    padding-top: 0;
  }
}

.access_map {
  height: 100%;
  width: 50%;
  flex-shrink: 0;
  padding-left: 57px;
}
@media screen and (max-width: 767.98px) {
  .access_map {
    margin-top: 30px;
    padding-left: 0;
    width: 100%;
  }
}
.access_map > div {
  width: 605px;
  height: 488px;
}
.access_map > div iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767.98px) {
  .access_map > div {
    width: auto;
    height: 300px;
  }
}
/*# sourceMappingURL=first.css.map */