@charset "UTF-8";
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Ubuntu:400,500,700&display=swap");
a {
  color: #ff751a;
}

a:hover {
  text-decoration: none;
}

.js-ani.fadeIn, .js-ani.fadeInTop, .js-ani.fadeInTopOver, .js-ani.fadeInTopBlur, .js-ani.scaleDownInBlur, .js-ani.scaleUpIn, .js-ani.scaleUpInOver, .js-ani.scaleDownIn, .js-ani.scaleDownInOver {
  opacity: 0;
  transition-duration: 0.7s, 0.3s;
}
.js-ani.fadeInTop {
  transform: translateY(30px);
}
.js-ani.fadeInTopOver {
  transform: translateY(50px);
}
.js-ani.scaleUpIn {
  transform: scale(0.93);
}
.js-ani.scaleUpInOver {
  transform: scale(0.85) translate(-30px, 0);
}
.js-ani.scaleDownIn {
  transform: scale(1.15);
}
.js-ani.scaleDownInOver {
  transform: scale(1.15) translate(-30px, 0);
}
.js-ani.fadeInTopBlur, .js-ani.scaleDownInBlur {
  filter: blur(10px);
  transform: translate(0, 15px);
  transition: 1.9s;
}
.js-ani.scaleDownInBlur {
  transform: scale(1.15);
}
.js-ani.js-ani-on {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}
.js-ani.js-ani-on.fadeInTopBlur, .js-ani.js-ani-on.scaleDownInBlur {
  transform: translate(0, 0);
  filter: blur(0);
}
.js-ani.js-ani-on.scaleUpIn, .js-ani.js-ani-on.scaleUpInOver, .js-ani.js-ani-on.scaleDownIn, .js-ani.js-ani-on.scaleDownInOver {
  transition-duration: 0.7s, 0.3s;
  transition-timing-function: cubic-bezier(0.32, 0.43, 0.49, 1.36), ease-in;
}

.js-ani-on.delay1 {
  transition-delay: 0.1s;
}
.js-ani-on.delay2 {
  transition-delay: 0.2s;
}
.js-ani-on.delay3 {
  transition-delay: 0.3s;
}
.js-ani-on.delay4 {
  transition-delay: 0.4s;
}
.js-ani-on.delay5 {
  transition-delay: 0.5s;
}
.js-ani-on.delay6 {
  transition-delay: 0.6s;
}
.js-ani-on.delay7 {
  transition-delay: 0.7s;
}
.js-ani-on.delay8 {
  transition-delay: 0.8s;
}
.js-ani-on.delay9 {
  transition-delay: 0.9s;
}
.js-ani-on.delay10 {
  transition-delay: 1s;
}
@media only screen and (max-width: 768px) {
  .js-ani-on.delay1, .js-ani-on.delay2, .js-ani-on.delay3, .js-ani-on.delay4, .js-ani-on.delay4, .js-ani-on.delay5, .js-ani-on.delay6, .js-ani-on.delay7, .js-ani-on.delay8, .js-ani-on.delay9, .js-ani-on.delay10 {
    transition-delay: 0s;
  }
}

.caratLine {
  padding-bottom: 0px;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-image: linear-gradient(180deg, transparent 80%, #fff100 0);
  transition: all 1s;
}
.caratLine.js-ani-on {
  background-size: 100% 100%;
  transition: all 1s;
}
.caratLine.js-ani-on.delay1 {
  transition-delay: 0.1s;
}
.caratLine.js-ani-on.delay2 {
  transition-delay: 0.2s;
}
.caratLine.js-ani-on.delay3 {
  transition-delay: 0.3s;
}

.passingBarTextLine {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #434343 50%);
  background-position: 100% 0;
  background-size: 201%;
  display: inline;
  overflow: hidden;
  transition: 2s;
}
.passingBarTextLine.js-ani-on {
  background-position: 0 0%;
}

.ani_btn01 {
  animation: 0.8s linear 0s infinite normal none running saltella;
}

@keyframes saltella {
  0% {
    transform: translateY(0%);
  }
  20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-10px);
  }
}
@keyframes passingBar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes passingBarIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.passingBar,
.passingBarIn {
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

.passingBar.js-ani-on {
  position: relative;
  display: inline-block;
  transform: translate3d(0, 0, 0);
}
.passingBar.js-ani-on::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  animation: passingBar 1s ease 0s 1 normal forwards;
  /* 任意の値 */
  background: #360;
}
.passingBar.js-ani-on .passingBarIn {
  animation: passingBarIn 0s ease 0.5s 1 normal forwards;
}

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
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, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

main {
  display: block;
}

img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* 共通
----------------------------------------------------*/
/* スクロールバーの有無によるズレ対策 */
html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  overflow: hidden;
  color: #111;
  font-size: 2rem;
  font-family: "Noto Sans JP", "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto, "Droid Sans", Arial, "Yu Gothic", YuGothic, Meiryo, sans-serif;
  line-height: 1.7;
  background-color: #fff;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.01em;
}
body .h_nav {
  display: block;
}
body .sp_side_nav {
  display: none;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
    line-height: 1.7;
  }
  body img {
    max-width: 100%;
    height: auto;
  }
  body .h_nav {
    display: none;
  }
  body .sp_side_nav {
    display: block;
  }
}

::selection {
  background: #ff751a;
  color: #fff;
  text-shadow: none;
}

.header {
  margin-bottom: 20px;
  text-align: center;
}
.pageTop a {
  padding: 7px 10px 11px;
  margin: 0;
  text-align: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  background: #fff000;
  display: inline-block;
  text-decoration: none;
  border-radius: 3px;
  color: #111;
  line-height: 1;
}
.pageTop a:before {
  font-family: "FontAwesome";
  content: "";
  margin-right: 5px;
  position: relative;
  top: 3px;
}
@media only screen and (max-width: 768px) {
  .pageTop a {
    bottom: 30px;
  }
}

.footer {
  clear: both;
  background-color: #ff751a;
  padding: 20px 5px 10px;
  font-size: 1.6rem;
}
.footer_in {
  max-width: 900px;
  margin: auto;
}
@media only screen and (max-width: 900px) {
  .footer_in {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.footer_text_box {
  max-width: 500px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff;
}
.footer_text_box h3 {
  font-size: 2.3rem;
}
.footer .copyright {
  font-size: 1.2rem;
  text-align: center;
}
/* コンテンツ共通
----------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

figcaption, figure {
  text-align: center;
}

main > *:last-child,
main > *:last-child > *:last-child,
main > *:last-child > *:last-child > *:last-child,
main > *:last-child > *:last-child > *:last-child > *:last-child,
main > *:last-child > *:last-child > *:last-child > *:last-child > *:last-child,
main > *:last-child > *:last-child > *:last-child > *:last-child > *:last-child > *:last-child,
main > *:last-child > *:last-child > *:last-child > *:last-child > *:last-child > *:last-child > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
    color: #111;
  }
}
.inner {
  max-width: 900px;
  margin: auto;
}
@media only screen and (max-width: 930px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* 2カラム用
----------------------------------------------------*/
.column_2 {
  display: flex;
}
.column_2 #main_column {
  max-width: 740px;
  margin-right: 20px;
}
.column_2 #side_column {
  max-width: 240px;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .column_2 {
    display: block;
  }
  .column_2 #main_column {
    max-width: 100%;
    margin: auto 15px;
  }
  .column_2 #side_column {
    max-width: 100%;
    margin: auto 15px;
  }
}

.main_visual {
  position: relative;
  padding: 20px 0 30px;
  margin-bottom: 40px;
}
.main_visual .main_visual_in {
  width: 100%;
  margin: 0 auto;
}
.main_visual .main_visual_in div img {
  display: none;
}
.main_visual .main_visual_in div:first-child img {
  display: block;
}
.main_visual .main_visual_in .slick-prev:before {
  content: "";
  padding: 60%;
  left: 20%;
  position: absolute;
  border-left: solid 2px #fff;
  border-bottom: solid 2px #fff;
  transform: rotate(45deg);
}
.main_visual .main_visual_in .slick-next:before {
  content: "";
  padding: 60%;
  right: 20%;
  position: absolute;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  transform: rotate(-45deg);
}
.main_visual .main_visual_in .slick-next {
  right: calc((100vw - 1000px) / 2 - 10px);
  z-index: 99;
}
.main_visual .main_visual_in .slick-prev {
  left: calc((100vw - 1000px) / 2 - 30px);
  z-index: 100;
}
.main_visual .main_visual_in .slick-dots li button:hover:before,
.main_visual .main_visual_in .slick-dots li button:focus:before,
.main_visual .main_visual_in .slick-dots li.slick-active button:before {
  color: #f60;
}
.main_visual .pc-only {
  display: block !important;
}
.main_visual .sp-only {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .main_visual .pc-only {
    display: none !important;
  }
  .main_visual .sp-only {
    display: block !important;
  }
}
.main_visual .main_copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  padding-left: 15px;
  padding-right: 15px;
}
.main_visual .main_visual_in.main_visual_fade {
  text-align: center;
}
.main_visual .main_visual_in.main_visual_fade div img {
  width: 100%;
}
.main_visual .main_visual_in.main_visual_fade .slick-next {
  right: 35px;
}
.main_visual .main_visual_in.main_visual_fade .slick-prev {
  left: 35px;
}
@media only screen and (max-width: 768px) {
  .main_visual .main_visual_in.main_visual_fade .slick-next {
    right: 16px;
  }
  .main_visual .main_visual_in.main_visual_fade .slick-prev {
    left: 10px;
  }
}

.fukidashi {
  position: relative;
  display: inline-block;
  min-width: 120px;
  width: 100%;
  padding: 20px;
  margin: auto;
  background: #ebe0d9;
  color: #111;
  font-size: 16px;
}
.fukidashi::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -23px;
  border: 23px solid transparent;
  border-top: 23px solid #ebe0d9;
}

.check_list ul {
  list-style: none;
}
.check_list ul li {
  padding-left: 46px;
  margin-bottom: 20px;
  background: url("../img/icon_check.svg") no-repeat;
  background-size: 30px;
  font-size: 1.8rem;
}
.check_list ul li:last-child {
  margin-bottom: 0;
}

.btn01 a {
  display: table;
  padding: 10px 20px;
  margin: auto;
  background-color: #00ba01;
  border-radius: 30px;
  border: 3px solid #fff;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.5), 0 2px 2px rgba(0, 0, 0, 0.19);
  transition: 0.2s ease-in-out;
}
.btn01:hover a {
  background-color: #38ca38;
}

.sec_line {
  padding: 25px 0 40px;
  background-color: #ffead9;
  background: #fce2e5;
  background: linear-gradient(to right, #fce2e5 0%, #ffddc4 100%);
}
.sec_line .title_line {
  padding: 20px 15px;
  background-color: #00ba01;
  color: #fff;
  font-size: 3.8rem;
  text-align: center;
}
.sec_line .title_line span {
  font-size: 3rem;
}
.sec_line .title_line::before {
  border-top-color: #00ba01;
}
.sec_line .title_line i {
  position: relative;
  top: 7px;
  display: inline-block;
  max-width: 55px;
  margin-right: 10px;
}
.sec_line .title_line i img {
  width: 100%;
}
@media only screen and (max-width: 930px) {
  .sec_line .title_line {
    font-size: 3.8vw;
  }
  .sec_line .title_line span {
    font-size: 3vw;
  }
  .sec_line .title_line i {
    position: relative;
    top: 7px;
    display: inline-block;
    max-width: 6vw;
    margin-right: 10px;
  }
  .sec_line .title_line i img {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .sec_line .title_line {
    display: table;
    width: auto;
    font-size: 7.2vw;
    line-height: 1.5;
  }
  .sec_line .title_line span {
    font-size: 5vw;
  }
  .sec_line .title_line i {
    position: relative;
    top: 7px;
    display: inline-block;
    max-width: 10vw;
    margin-right: 10px;
  }
  .sec_line .title_line i img {
    width: 100%;
  }
}
.sec_line_text_box {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  max-width: 800px;
  margin: 40px auto 40px;
}
.sec_line_text_box figure {
  width: 36%;
}
.sec_line_text_box .check_list {
  width: 60%;
  padding: 20px;
  background: #fff;
  font-weight: bold;
}
.sec_line_text_box .check_list li:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .sec_line_text_box {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
  }
  .sec_line_text_box figure {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 5%;
  }
  .sec_line_text_box .check_list {
    width: 100%;
    padding: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .sec_line_text_box .check_list ul li {
    margin-bottom: 15px;
    background-size: 26px;
    padding-left: 34px;
    font-size: 1.6rem;
  }
}
.sec_line .btn01 {
  max-width: 600px;
  margin: auto;
}
.sec_line .btn01 a {
  width: 100%;
  padding: 20px;
  border-radius: 100px;
  text-align: center;
  font-size: 4rem;
  letter-spacing: 0.1em;
}
.sec_line .btn01 a i {
  position: relative;
  top: 7px;
  margin-right: 15px;
}
.sec_line .btn01 a i img {
  width: 50px;
}
@media only screen and (max-width: 768px) {
  .sec_line .btn01 a {
    padding: 20px;
    font-size: 2.4rem;
  }
  .sec_line .btn01 a i {
    margin-right: 10px;
  }
  .sec_line .btn01 a i img {
    width: 34px;
  }
}

.sec_nayami {
  padding: 60px 0;
}
@media only screen and (max-width: 768px) {
  .sec_nayami {
    padding: 40px 0;
  }
}
.sec_nayami h2 {
  display: table;
  position: relative;
  padding: 0 18px;
  margin: 0 auto 1em;
  font-size: 3.6rem;
  text-align: center;
}
.sec_nayami h2::before, .sec_nayami h2::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 3px;
  height: 4rem;
  background: #000;
}
.sec_nayami h2::before {
  left: 0;
  transform: rotate(-40deg);
}
.sec_nayami h2::after {
  content: "";
  right: 0;
  transform: rotate(40deg);
}
@media only screen and (max-width: 768px) {
  .sec_nayami h2 {
    padding: 0 15px;
    font-size: 5vw;
  }
  .sec_nayami h2::before, .sec_nayami h2::after {
    width: 2px;
    height: 3rem;
    background: #000;
  }
}
.sec_nayami .check_list {
  max-width: 800px;
  padding: 30px;
  margin: 0 auto 1.5em;
  background-color: #ececec;
}
.sec_nayami .check_list ul li {
  position: relative;
  padding-left: 55px;
  background-size: 40px;
  font-size: 2.8rem;
  background-position-y: 5px;
}
@media only screen and (max-width: 768px) {
  .sec_nayami .check_list {
    padding: 20px;
  }
  .sec_nayami .check_list ul li {
    padding-left: 40px;
    background-size: 28px;
    font-size: 2rem;
  }
}
.sec_nayami_text_box {
  text-align: center;
}
.sec_nayami_text_box p {
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .sec_nayami_text_box .pc-only {
    display: block !important;
  }
}
@media only screen and (max-width: 400px) {
  .sec_nayami_text_box {
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
  }
  .sec_nayami_text_box .pc-only {
    display: none !important;
  }
}

.sec_reason {
  padding: 80px 0 70px;
  background-color: #f4ecd8;
}
@media only screen and (max-width: 768px) {
  .sec_reason {
    padding: 40px 0 30px;
  }
}
.sec_reason h2 {
  margin-bottom: 1em;
  font-size: 4.8rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 900;
}
@media only screen and (max-width: 768px) {
  .sec_reason h2 {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 425px) {
  .sec_reason h2 {
    font-size: 2.2rem;
  }
}
.sec_reason_text_box {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 40px auto 20px;
}
.sec_reason_text_box figure {
  width: 38%;
}
.sec_reason_text_box figure img {
  border-radius: 50%;
}
.sec_reason_text_box .sec_reason_text {
  width: 60%;
}
.sec_reason_text_box .sec_reason_text p {
  margin-bottom: 1.5em;
}
@media only screen and (max-width: 900px) {
  .sec_reason_text_box {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .sec_reason_text_box {
    flex-direction: column;
    justify-content: center;
  }
  .sec_reason_text_box figure {
    width: 80%;
    margin-bottom: 5%;
  }
  .sec_reason_text_box .sec_reason_text {
    width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  .sec_reason_text_box {
    margin-bottom: 0;
  }
}
.sec_reason_text_box2 {
  margin-bottom: 1.5em;
  text-align: center;
  font-size: 3rem;
  line-height: 2;
}
.sec_reason_text_box2 span {
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .sec_reason_text_box2 {
    font-size: 2.4rem;
  }
  .sec_reason_text_box2 span {
    font-size: 2rem;
  }
}
.sec_reason_text2 {
  max-width: 900px;
  margin: auto;
}
.sec_reason_text2 p {
  margin-bottom: 1.5em;
}
@media only screen and (max-width: 900px) {
  .sec_reason_text2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.sec_step {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .sec_step {
    padding: 40px 0 30px;
  }
}
.sec_step h2 {
  margin-bottom: 1em;
  font-size: 4.8rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 900;
}
@media only screen and (max-width: 768px) {
  .sec_step h2 {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 425px) {
  .sec_step h2 {
    font-size: 2.2rem;
  }
}
.sec_step .sec_step_box {
  max-width: 900px;
  margin: auto;
}
@media only screen and (max-width: 900px) {
  .sec_step .sec_step_box {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.sec_step .fukidashi {
  margin-bottom: 3em;
}
.sec_step .fukidashi dt {
  font-size: 3rem;
}
.sec_step .fukidashi dd {
  text-align: center;
  font-size: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .sec_step .fukidashi {
    padding: 10px 15px 15px;
  }
  .sec_step .fukidashi dt {
    font-size: 2.6rem;
  }
  .sec_step .fukidashi dd {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}
.sec_step .btn01 {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  line-height: 1.4;
}
.sec_step .btn01 a {
  width: 100%;
  max-width: 600px;
  border-radius: 60px;
  font-size: 3.8rem;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 375px) {
  .sec_step .btn01 a {
    font-size: 2.4rem;
  }
}

.sec_supervision {
  padding: 80px 0;
  background-color: #f4ecd8;
}
@media only screen and (max-width: 768px) {
  .sec_supervision {
    padding: 40px 0 30px;
  }
}
.sec_supervision h2 {
  margin-bottom: 1em;
  font-size: 4.8rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 900;
}
@media only screen and (max-width: 768px) {
  .sec_supervision h2 {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 425px) {
  .sec_supervision h2 {
    font-size: 2.2rem;
  }
}
.sec_supervision_text_box {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}
.sec_supervision_text_box figure {
  width: 40%;
}
.sec_supervision_text_box .sec_supervision_text {
  width: 56%;
}
.sec_supervision_text_box .sec_supervision_text h3 {
  margin-bottom: 1em;
  font-size: 3.4rem;
  line-height: 1.4;
  font-weight: 900;
}
.sec_supervision_text_box .sec_supervision_text h3 span {
  font-size: 4.6rem;
}
.sec_supervision_text_box .sec_supervision_text p {
  margin-bottom: 1em;
  font-weight: 500;
}
@media only screen and (max-width: 900px) {
  .sec_supervision_text_box {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .sec_supervision_text_box {
    flex-direction: column;
    justify-content: center;
  }
  .sec_supervision_text_box figure {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 5%;
  }
  .sec_supervision_text_box .sec_supervision_text {
    width: 100%;
  }
  .sec_supervision_text_box .sec_supervision_text h3 {
    margin-bottom: 0.8em;
    font-size: 2.6rem;
  }
  .sec_supervision_text_box .sec_supervision_text h3 span {
    font-size: 3.4rem;
  }
}

.sec_media {
  max-width: 900px;
  padding: 80px 0;
  margin: auto;
}
@media only screen and (max-width: 900px) {
  .sec_media {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .sec_media {
    padding: 40px 15px 30px;
  }
}
.sec_media h2 {
  margin-bottom: 1em;
  font-size: 4.8rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 900;
}
@media only screen and (max-width: 768px) {
  .sec_media h2 {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 425px) {
  .sec_media h2 {
    font-size: 2.2rem;
  }  
}

.sec_media .text {
  margin-bottom: 1em;
  text-align: center;
}
.sec_media .sec_media_img_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10%;
}
.sec_media .sec_media_img_box figure {
  max-width: 48%;
}
 .sec_media_img_box_2{
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
} 
.sec_media_img_box_2 img{
  display: block;
  width: 80%;
  margin-bottom: 20px;
}
@media only screen and (max-width:515px){
  .sec_media .sec_media_img_box_2{
    
  }
.sec_media_img_box_2 img{
    width: 90%!important;
    margin-bottom: 20px;
  }
}
.sec_comment {
  padding: 80px 0;
  background-color: #f4ecd8;
}
@media only screen and (max-width: 768px) {
  .sec_comment {
    padding: 40px 0 30px;
  }
}
.sec_comment h2 {
  margin-bottom: 1em;
  font-size: 4.8rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 900;
}
.sec_comment h2 span {
  font-size: 4rem;
}
@media only screen and (max-width: 768px) {
  .sec_comment h2 {
    font-size: 2.8rem;
  }
  .sec_comment h2 span {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 425px) {
  .sec_comment h2 {
    font-size: 2.2rem;
  }
  .sec_comment h2 span {
    font-size: 1.8rem;
  }
}
.sec_comment figure {
  margin-bottom: 5%;
}
.sec_comment figure img {
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .sec_comment figure {
    max-width: 280px;
    margin: 0 auto 5%;
  }
}
.sec_comment_text_box {
  max-width: 900px;
  margin: auto;
}
.sec_comment_text_box p {
  font-size: 2.4rem;
  margin-bottom: 1.5em;
}
@media only screen and (max-width: 900px) {
  .sec_comment_text_box {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .sec_comment_text_box p {
    font-size: 1.8rem;
    margin-bottom: 1.5em;
  }
}

.btn_more a {
  position: relative;
  display: inline-block;
  padding: 7px 18px;
  background-color: #ff751a;
  border: 1px solid #ff751a;
  text-decoration: none;
  border-radius: 50px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 2px;
  transition: 0.2s ease-in-out;
}
.btn_more a::before, .btn_more a::after {
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  content: "";
  margin: auto;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.2s ease-in-out;
}
.btn_more a:hover {
  background: #fff;
  border: 1px solid #ff751a;
  color: #ff751a;
}
.btn_more a:hover::before, .btn_more a:hover::after {
  border-top: 1px solid #ff751a;
  border-right: 1px solid #ff751a;
}
.btn_more.inverse a {
  color: #ff751a;
  background: #fff;
}
.btn_more.inverse a::before, .btn_more.inverse a::after {
  border-top: 1px solid #ff751a;
  border-right: 1px solid #ff751a;
}
.btn_more.inverse a:hover {
  background: #ff751a;
  border: 1px solid #fff;
  color: #fff;
}
.btn_more.inverse a:hover::before, .btn_more.inverse a:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/*    decoration
---------------------------------------------------- */
.bold {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

/*    color
---------------------------------------------------- */
.red {
  color: #F33;
}

.yellow {
  color: #FFF100;
}

/*    hover
---------------------------------------------------- */
.mk {
  transition: 0.2s ease-in-out;
}

.mk:hover {
  opacity: 0.8;
  filter: alpha(opacity=20);
}

/*    font-size
---------------------------------------------------- */
.text-xxlarge {
  font-size: 2.4rem;
}

.text-xlarge {
  font-size: 2rem;
}

.text-large {
  font-size: 1.6rem;
}

.text-small {
  font-size: 1.2rem;
}

.text-xsmall {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .text-xxlarge {
    font-size: 3.6rem;
  }

  .text-xlarge {
    font-size: 2.8rem;
  }

  .text-large {
    font-size: 2rem;
  }

  .text-small {
    font-size: 1.2rem;
  }

  .text-xsmall {
    font-size: 1rem;
  }
}
/*   clerfix
---------------------------------------------------- */
.clerfix {
  *zoom: 1;
}
.clerfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/*   text
---------------------------------------------------- */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

@media (min-width: 768px) {
  .pc-hide, .sp-only {
    display: none !important;
  }

  .pc-text-center {
    text-align: center;
  }

  .pc-text-left {
    text-align: left;
  }

  .pc-text-right {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .sp-hide, .pc-only, .tablet-only {
    display: none !important;
  }

  .sp-text-center {
    text-align: center;
  }

  .sp-text-left {
    text-align: left;
  }

  .sp-text-right {
    text-align: right;
  }
}
/*    float
---------------------------------------------------- */
.fr {
  float: right !important;
}

.fl {
  float: left !important;
}

.clear {
  clear: both;
}

.oh {
  overflow: hidden;
}

/*    margin
---------------------------------------------------- */
.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}