@charset "UTF-8";
/*---------------------------------
  
  1.共通・リセットスタイル
  2.SPとそれぞれ表示の切り替え
  3.各プロパティ
  4.他のページで使いまわし可能なスタイル
    4-1.各要素に存在するアイコン各種

---------------------------------*/
/*---------------------------------

  共通・リセットスタイル

---------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Roboto:wght@400;500;700&display=swap");
html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
}

body {
  color: #333;
  font-size: 1.6rem;
  overflow-x: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .04em;
}

.wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dd,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

.clearfix::after {
  clear: both;
  content: '';
  display: block;
}

button,
input:not([type='radio']),
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

input[type='submit'],
input[type='button'],
button {
  cursor: pointer;
}

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

a {
  color: #333;
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

/*---------------------------------

  PC/SPとそれぞれ表示の切り替え

---------------------------------*/
.show {
  opacity: 1 !important;
  transition: all 0.1s linear;
}

.hide {
  opacity: 0 !important;
  transition: all 0.1s linear;
}

/*---------------------------------

  各マージン・パディングの指定

---------------------------------*/
/*---------------------------------

  各プロパティ

---------------------------------*/
.w-100 {
  height: auto;
  width: 100%;
}

.h-100 {
  height: 100%;
  width: auto;
}

.text-orange {
  color: #fd6b00;
}

.text-yellow {
  color: #fff100;
}

.underline-orange {
  background: #fd8900;
  background: linear-gradient(0deg, #fd8900 0%, #fd8900 3px, rgba(255, 255, 255, 0) 3px, rgba(255, 255, 255, 0) 100%);
}

.underline-333-2 {
  background: #333333;
  background: linear-gradient(0deg, #333333 0%, #333333 2px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 100%);
}

.underline-333-2-pb-1 {
  padding-bottom: 1rem;
}

.underline-333-2-pc {
  background: #333333;
  background: linear-gradient(0deg, #333333 0%, #333333 2px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 100%);
}

.underline-333-2-pc-pb-1 {
  padding-bottom: 1rem;
}

.container {
  max-width: 1200px;
}

.container-secondary {
  max-width: 1100px;
}

.container-tertiary {
  max-width: 1000px;
}

.fixed {
  bottom: 0;
  position: fixed;
  width: 100%;
  z-index: 10;
}

.fixed--none {
  bottom: 0;
  position: fixed;
  width: 100%;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.block-center {
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

/*---------------------------------

  他のページで使いまわし可能なスタイル

---------------------------------*/
.section {
  text-align: center;
  padding-top: 10rem;
}

.section__bg-01 {
  background: #e6ecf0;
}

.section__bg-02 {
  background-color: #ffffff;
  background-size: 18px 18px;
  background-image: linear-gradient(#f6f6f6 0.9px, transparent 0.9px), linear-gradient(to right, #f6f6f6 0.9px, white 0.9px);
}

.section__main {
  max-width: 1300px;
  position: relative;
  padding: 5rem 5rem 0 5rem;
  background: url(../img/pc_mainvisual.png) no-repeat center right/contain;
}

.section__contact {
  text-align: center;
  background-color: #f6f6f6;
  padding: 10rem 0 10rem;
}

.section__lead {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.65;
  margin-bottom: 8rem;
}

.section__lead__text-large {
  font-size: 4.4rem;
}

.section__title {
  display: inline-block;
  border-radius: 70px;
  padding: 3rem 0;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 5rem;
  text-align: center;
  color: #ffffff;
  background-color: #009386;
  width: 96rem;
}

/*  
  各要素に存在するアイコン各種
---------------------------------*/
.arrow {
  display: inline-block;
  padding-left: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.arrow::before {
  border: 0;
  content: '';
  left: 0;
  position: absolute;
  top: 50%;
}

.arrow--vertical::before {
  border-right: solid 3px #ffffff;
  border-top: solid 3px #ffffff;
  margin-top: -9px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.arrow--side-md {
  right: 1.5rem;
  padding-left: 40px;
}

.arrow--side-md::before {
  width: 13px;
  height: 13px;
  border-right: solid 3px #ffffff;
  border-top: solid 3px #ffffff;
  margin-top: -6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.arrow--side-sm {
  left: -1.8rem;
}

.arrow--side-sm::before {
  width: .5rem;
  height: .5rem;
  border-right: solid 1px #333;
  border-top: solid 1px #333;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.icon {
  display: inline-block;
  margin-right: 2rem;
}

.icon-phone-white {
  background: url(../img/icon_phone_white.png) no-repeat center center/contain;
  width: 44px;
  height: 42px;
}

.icon-mail-white {
  background: url(../img/icon_mail_white.png) no-repeat center center/contain;
  width: 36px;
  height: 36px;
}

.icon-line-green {
  background: url(../img/icon_line_green.png) no-repeat center center/contain;
  width: 42px;
  height: 40px;
}

.icon-checkmark-red {
  background: url(../img/icon_checkmark_red.png) no-repeat center center/contain;
  width: 21px;
  height: 17px;
}

.icon-checkbox-red {
  background: url(../img/icon_checkbox_red.png) no-repeat center center/contain;
  width: 33px;
  height: 30px;
}

@media screen and (max-width: 768px) {
  img {
    height: auto;
    width: 100%;
  }
  .underline-orange {
    background: #fd8900;
    background: linear-gradient(0deg, #fd8900 0%, #fd8900 2px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 100%);
  }
  .underline-333-2-pc {
    background: none;
  }
  .underline-333-2-pc-pb-1 {
    padding-bottom: 0;
  }
  .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .container-secondary {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .container-tertiary {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .block-sp {
    display: block;
  }
  .inline-block-sp {
    display: inline-block;
  }
  .flex-sp {
    display: flex;
  }
  .flex-wrap-sp {
    flex-wrap: wrap;
  }
  .flex-row-sp {
    flex-direction: row;
  }
  .flex-row-reverse-sp {
    flex-direction: row-reverse;
  }
  .flex-column-sp {
    flex-direction: column;
  }
  .flex-column-reverse-sp {
    flex-direction: column-reverse;
  }
  .align-start-sp {
    align-items: flex-start;
  }
  .align-center-sp {
    align-items: center;
  }
  .align-end-sp {
    align-items: flex-end;
  }
  .justify-start-sp {
    justify-content: flex-start;
  }
  .justify-center-sp {
    justify-content: center;
  }
  .justify-between-sp {
    justify-content: space-between;
  }
  .justify-end-sp {
    justify-content: flex-end;
  }
  .section {
    padding-top: 5rem;
  }
  .section__bg-02 {
    background-image: linear-gradient(#f2f2f2 0.7px, transparent 0.7px), linear-gradient(to right, #f2f2f2 0.7px, #ffffff 0.7px);
    background-size: 14px 14px;
  }
  .section__main {
    background: none;
    padding: 3.5rem 2rem 0 2rem;
  }
  .section__contact {
    padding: 5rem 0 7.5rem;
  }
  .section__lead__text-large {
    font-size: 2.4rem;
  }
  .section__lead {
    font-size: 2.2rem;
    margin-bottom: 4.5rem;
  }
  .section__title {
    width: 100%;
    font-size: 1.5rem;
    padding: 1.5rem 0;
    margin-bottom: 2.6rem;
    position: relative;
  }
  .section__title__shiriize {
    color: #009386;
    border: 1px solid #009386;
    background-color: #ffffff;
    position: absolute;
    top: -32px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 1.5rem;
    padding: 1rem 2rem;
  }
  .section__title__shiriize::before, .section__title__shiriize::after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section__title__shiriize::before {
    bottom: -16px;
    border: 8px solid transparent;
    border-top: 8px solid #ffffff;
    z-index: 2;
  }
  .section__title__shiriize::after {
    bottom: -20px;
    border: 10px solid transparent;
    border-top: 10px solid #009386;
    z-index: 1;
  }
  .arrow--side-md::before {
    left: 0;
    width: 7px;
    height: 7px;
    border-right: solid 2px #ffffff;
    border-top: solid 2px #ffffff;
    margin-top: -4px;
  }
  .arrow--side-sm {
    left: 0;
  }
  .arrow--side-sm::before {
    border-right: solid 1px #ffffff;
    border-top: solid 1px #ffffff;
  }
  .icon-phone-white {
    width: 38.5px;
    height: 37.5px;
  }
  .icon-phone-white-sm {
    width: 28px;
    height: 27.5px;
    margin-right: .5rem;
  }
  .icon-mail-white {
    width: 25px;
    height: 25px;
    margin-right: 1rem;
  }
  .icon-mail-white-lg {
    width: 33px;
    height: 33px;
    margin-right: 0;
  }
  .icon-line-green {
    width: 29px;
    height: 27px;
    margin-right: 1rem;
  }
  .icon-line-green-lg {
    width: 33px;
    height: 33px;
    margin-right: 0;
  }
  .icon-checkmark-red {
    width: 14px;
    height: 11.5px;
    margin-right: 1rem;
  }
  .icon-checkbox-red {
    width: 19px;
    height: 17px;
    margin-right: 1rem;
  }
}

@media screen and (min-width: 769px) {
  .block-pc {
    display: block;
  }
  .inline-block-pc {
    display: inline-block;
  }
  .flex-pc {
    display: flex;
  }
  .flex-wrap-pc {
    flex-wrap: wrap;
  }
  .flex-row-pc {
    flex-direction: row;
  }
  .flex-row-reverse-pc {
    flex-direction: row-reverse;
  }
  .flex-column-pc {
    flex-direction: column;
  }
  .flex-column-reverse-pc {
    flex-direction: column-reverse;
  }
  .align-start-pc {
    align-items: flex-start;
  }
  .align-center-pc {
    align-items: center;
  }
  .align-end-pc {
    align-items: flex-end;
  }
  .justify-start-pc {
    justify-content: flex-start;
  }
  .justify-center-pc {
    justify-content: center;
  }
  .justify-between-pc {
    justify-content: space-between;
  }
  .justify-end-pc {
    justify-content: flex-end;
  }
}
