@charset "utf-8";
/* CSS Document */

@media screen and (max-width: 1200px) {
  body {
    width: 1200px;
  }
}
@media screen and (max-width: 1025px) {
}
@media screen and (max-width: 767px) {
  body {
    width: 100%;
  }
  .head_outer {
    position: absolute;
    top: 0;
  }
  header {
    display: none;
  }

  header h1 {
    display: none;
  }
  header li {
    margin: 10px 5px;
  }
  /* ==========================
共通パーツ
============================= */
  .pc_block {
    display: none;
  }
  .sp_block {
    display: block;
  }
  .pc_br {
    display: none;
  }
  .mail_form {
    display: none;
  }
  .pc_img {
    display: none;
  }
  .sp_img {
    display: block;
  }
  .sp_br {
    display: block;
  }


  /* ==========================
.mainvisual
============================= */

  /* ==========================
table
============================= */
  /*table th,table td{
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 30px 5%;
	}
	*/
  /* ==========================
======== スマホメニュー =======
============================= */
#sp_logo {
    padding-left: 5%;
    width: calc(100% - 10% - 70px);
}
  #sp_logo img {
    max-width: 100%;
    max-height: 70px;
    height: auto;
  }
  .sp_mail_btn {
    width: 55px;
    position: absolute;
    right: 80px;
    top: 15px;
  }
  .sp_mail_btn img {
    max-width: 100%;
    height: auto;
  }

.cp_cont {
    display: flex;
    z-index: 99999;
    background: linear-gradient(90deg, #fff 0%,#fff calc(150px + 10%),#0D3D1760 calc(150px + 10%),#0D3D1760 100%);
    height: 80px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 3;
}
  .cp_cont *,
  .cp_cont *:before,
  .cp_cont *:after {
    padding: 0;
    margin: 0;
  }
  .cp_cont a {
    text-decoration: none;
    color: inherit;
  }
  .cp_offcm01 {
    position: absolute;
    top: 0px;
    right: 0px;
    display: inline-block;
    z-index: 99999;
  }
  /* menu */
  .cp_offcm01 .cp_menu {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 250px;
    height: 100%;
    cursor: pointer;
    -webkit-transition: 0.4s transform;
    transition: 0.4s transform;
    background-color: #009441;
    opacity: 1;
  }
  .cp_offcm01 .cp_menu ul.ff_ul {
    margin-top: 75px;
    padding: 0;
    padding-bottom: 100px;
    font-family: "Hiragino Kaku Gothic ProN";
  }
  .cp_offcm01 .cp_menu li.pshm_title {
    padding: 35px 20px 13px;
    color: #fff;
    font-size: 22px;
    height: 33px;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li .ac_radio {
    display: none;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0s ease-in;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li .ac_radio:checked + ul.sf_ul {
    max-height: 9999px;
    transition: max-height 1s ease-in;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li a {
    padding: 10px 15px 10px 45px;
    text-decoration: none;
    color: #ffffff;
    border-bottom: 1px dashed #e6e6e6;
    background: #6baecf;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li:last-child a {
    border-bottom: none;
  }
  .cp_offcm01 #cp_toggle01 {
    position: absolute;
    display: none;
    opacity: 0;
  }
  .cp_offcm01 #cp_toggle01:checked ~ .cp_menu {
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
    overflow-y: auto;
    -webkit-box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
    box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
    z-index: 5;
  }

  /* menu toggle */
  .cp_offcm01 #cp_toggle01 ~ label {
    position: relative;
    z-index: 999999;
    display: block;
    height: 30px;
    width: 30px;
    cursor: pointer;
    -webkit-transition: 0.4s transform;
    transition: 0.4s transform;
    text-align: center;
    color: #fff;
    top: -10px;
    margin: 0 auto;
  }
  .cp_offcm01 #cp_toggle01 ~ label::before,
  .cp_offcm01 #cp_toggle01:checked ~ label::before {
    content: "";
    vertical-align: middle;
    display: inline-block;
    width: 35px;
    height: 30px;
  }

  .cp_offcm01 #cp_toggle01 ~ label::after {
    position: absolute;
    left: -2px;
    top: 30px;
    bottom: -10px;
    content: "MENU";
    display: block;
    width: 100%;
    color: #fff;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: all 0.4s;
    font-size: 1.0rem;
  }

  .cp_offcm01 #cp_toggle01:checked ~ label::after {
    content: "CLOSE";
    top: 30px;
    bottom: -20px;
    color: #fff;
    left: -5px;
  }
  .cp_offcm01,
  .cp_offcm01 span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
.cp_offcm01 {
    position: absolute;
    right: 13px;
    top: 13px;
    width: 54px;
    height: 54px;
    padding: 18px 10px;
    background: #009441;
}

  .cp_offcm01 span {
    position: absolute;
    right: 0px;
    width: 100%;
    border-radius: 1px;
    height: 2px;
    background-color: #fff;
  }
  .cp_offcm01 span:nth-of-type(1) {
    top: 4px;
  }
  .cp_offcm01 span:nth-of-type(2) {
    top: 13px;
  }
  .cp_offcm01 span:nth-of-type(3) {
    bottom: 5px;
  }

  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(1) {
    /*-webkit-transform: translateY(20px) rotate(-315deg) scale(.8);
  transform: translateY(20px) rotate(-315deg) scale(.8);*/
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(20px) rotate(-45deg);
    background-color: #fff;
    top: -3px;
  }
  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(2) {
    opacity: 0;
    background-color: #000;
  }
  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-20px) rotate(45deg);
    background-color: #fff;
    bottom: -10px;
  }
.lang{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 5%;
}
.lang a {
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
}
    .lang a::before{
        content: '>';
        display: block;
        margin-right: 10px;
    }
/*contact_box*/
.contact_inner {
    flex-direction: column;
}
.contact_top {
	font-size: 2rem;
    width: 90%;
    margin: auto;
}
a.contact_btn {
    font-size: 1.6rem;
    line-height: 0;
    width: 90%;
    justify-content: space-between;
    max-width: 350px;
}
a.contact_btn.mail::before {
    font-size: 2rem;
    padding-right: 5px;
}
a.contact_btn::after{
    padding-left: 5px
}
.contact_line {
    width: 90%;
    height: 1px;
    background: #fff;
    margin: 15px auto;
}
  /* ==========================
======== footer =======
============================= */
.vis_inner{
    background: #EFF3DE95 url(../img/arrow_vis.svg)no-repeat center right 20px;
    position: relative;
    padding: 20px 5%;
    padding-right: 40px;
}
span.vis_name {
    font-size: 1.6rem;
    margin: 10px 0 0;
}
span.vis_icon {
    position: absolute;
    width: 50px;
    height: 50px;
    padding: 10px;
    box-sizing: border-box;
    top: 13px;
    left: 165px;
}
.fixed_btn_box {
    display: none;
}
footer {
    padding: 40px 5%;
}
.ft_inner {
    min-height: auto;
    flex-direction: column;
}
.ft_left {
    width: 100%;
}
.ft_name {
    flex-direction: column;
    align-items: flex-start;
}
.ft_bot {
    font-size: 2.4rem;
    letter-spacing: 0;
}
.ft_title {
    margin-top: 10px;
}
.ft_sitemap {
}
.ft_name_sub {
    margin-top: 5px;
}
.ft_address {
    margin-bottom: 20px;
}
.ft_license {
    margin-bottom: 20px;
}
.ft_right {
    display: block;
    width: 100%;
}
.copyright {
    width: 100%;
    margin: auto;
    padding: 10px 0 30px;
}
  /* ==========================
固定ボタン
============================= */

.contact_box {
    padding: 60px 0;
    margin-top: 60px;
}
  .ft_nav li {
    padding: 0 12px;
    border-right: none;
    flex-grow: 1;
    text-align: center;
    margin: 0 0 15px 0;
  }
  #copyright {
    width: 90%;
    padding: 15px 5% 20%;
    position: static;
    text-align: center;
  }
  #copyright {
    display: block;
  }
  .copyright small {
    display: block;
}
  .copyright img {
    margin-top: 0px;
    margin-bottom: 10px;
  }
    
  /* ==========================
SPのみ固定ボタン
============================= */

  /* ==========================
下層ページ
============================= */
.intro_card {
    padding: 30px 5%;
}
.intro_name {
    font-size: 8vw;
    margin-top: 20px;
}
.intro_img {
    position: absolute;
    top: 10px;
    max-width: 80px;
    left: 175px;
}
.effort_inner {
    margin: 0;
    flex-direction: column;
    align-items: self-start;
    padding: 10px 5%;
    box-sizing: border-box;
}
.effort_num, .effort_num.double {
    padding: 5px 25px;
    margin-bottom: 10px;
}
.effort_title {
    font-size: 1.8rem;
}
.effort_top {
    font-size: 1.6rem;
}
.effort_midashi {
    padding: 15px 5%;
}
.effort_gallery {
    width: calc(90% + 20px);
}
}
