@charset "utf-8";
/*
Theme Name: TCG Original Theme

*/


@import url('https://fonts.googleapis.com/css2?family=Iceland&display=swap');

:root {
  --navy: #003853;
}

html {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-size: 62.5%;
  overflow-x: hidden;
  color: #333333;
}
/***上書き***/
img.scaled-image {
  border: none !important;
    margin: 0 !important;
}

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

.wrapper {
  max-width: 1010px;
  width: calc(100% - 40px);
  margin: 0 auto;
}


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

h1,h2,h3,h4,h5,h6,p,th,td,li,dt,dd {
  line-height: 1.4;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: bold;
}
h1 {
  font-size: 3rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.2rem;
}

h4,h5,h6 {
  font-size: 1.8rem;
}

p,th,td,li,dt,dd {
  font-size: 1.6rem;
}

a {
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 800px){
  
}


/*共通*/


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

.sp {
  display: none;
}


.text_center {
  text-align: center;
}
.text_right {
  text-align: right;
}


.original_btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.original_btn a {
  max-width: 280px;
  width: 100%;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--navy);
  color: white;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid var(--navy);
}

.original_btn.white a {
  background-color: #fff;
  border: 1px solid #fff;
  color: var(--navy);
}

.original_btn.big a {
  max-width: 400px;
  min-height: 72px;
  font-size: 2.2rem;
}

.original_btn a:hover {
  background-color: white;
  color: var(--navy);
  opacity: 1;
}

.original_btn.white a:hover {
  background-color: var(--navy);
  color: #fff;
  opacity: 1;
}

.original_btn a::after {
  width: 20px;
  height: 12px;
  content: '';
  background: url(img/btn_arrow.png) center / contain no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 35px;
  transition: all 0.3s ease;
}
.original_btn a:hover::after {
  background-image: url(img/btn_arrow_n.png);
}

.original_btn.white a::after {
  background: url(img/btn_arrow_n.png) center / contain no-repeat;
}
.original_btn.white a:hover::after {
  background-image: url(img/btn_arrow.png);
}


.top_sec_title {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 6rem;
  text-align: center;
}


.sub_sec_title {
  position: relative;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 22px;
  margin-bottom: 60px;
}

.sub_sec_title::after {
  content: '';
  width: 24px;
  height: 4px;
  background-color: var(--navy);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.line_title {
  padding-bottom: 16px;
  border-bottom: 2px solid var(--navy);
}

.line_box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.line_box > li {
  width: calc(100% / 3 - 20px / 3);
  border: 1px solid var(--navy);
  border-top: 4px solid var(--navy);
}


.mini_list > li {
  position: relative;
  padding-left: 14px;
}

.mini_list > li:not(:last-of-type) {
  margin-bottom: 4px;
}

.mini_list > li::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--navy);
  position: absolute;
  left: 0;
  top: 7px;

}


@media screen and (max-width: 800px) {

  .sp {
    display: block
  }

  .pc {
    display: none;
  }
  /*共通*/


}


@media screen and (max-width: 600px) {
  .top_sec_title {
    font-size: 4rem;
  }

  .line_box {
    flex-direction: column;
  }
  .line_box > li {
    width: 100%;
  }

  .line_box > li:not(:last-of-type) {
    margin-bottom: 20px;
  }

}

/***スライダー***/

.original_slider .slick-prev,
.original_slider .slick-next {
  width: 40px;
  height: 40px;
  border: 1px solid #000000;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.original_slider .slick-prev {
  left: -40px;
}
.original_slider .slick-next {
  right: -40px;
}

.original_slider .slick-prev:hover,
.original_slider .slick-next:hover {
  background-color: #F1F1F1;
}
.original_slider .slick-prev:before, .slick-next:before {
  content: '';
  width: 20px;
  height: 12px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  filter: brightness(200%)
}

.original_slider .slick-prev:before {
  background: url(img/slide_left_b.png) center / contain no-repeat;
}
.original_slider .slick-next:before {
  background: url(img/slide_right_b.png) center / contain no-repeat;
}
@media screen and (max-width: 800px){
  
}
@media screen and (max-width: 600px){
  .original_slider .slick-prev,
.original_slider .slick-next {
  width: 25px;
  height: 25px;
  border: 1px solid #000000;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.original_slider .slick-prev {
  left: -25px;
}
.original_slider .slick-next {
  right: -25px;
}
.original_slider .slick-prev:before, .slick-next:before {
  content: '';
  width: 10px;
  height: 6px;

}
}

/***ヘッダー***/
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 0px 20px;
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  z-index: 1000;
  box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid #E0E0E0;
}

.header_main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header_main .header_logo {
  max-width: 60px;
  margin-right: 50px;
}

.header_nav > ul {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

/* .header_nav > ul.japanese_menu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  z-index: -1;
  font-weight: bold;
} */

/* .header_nav > ul.english_menu.on {
  opacity: 0;
  z-index: -1;
}

.header_nav > ul.japanese_menu.on {
  opacity: 1;
  z-index: 1;
} */
.header_nav > ul{
  position: relative;
}
/* .header_nav > ul > li {
  position: relative;
} */
.header_nav > ul > li:not(:last-of-type) {
  margin-right: 30px;
}



.header_nav > ul a {

  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  box-sizing: content-box;
  position: relative;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}




.header_nav > ul.english_menu a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.header_nav > ul.japanese_menu a {
  font-size: 1.5rem;
}


.header_nav > ul a:hover {
  border-bottom: 2px solid var(--navy);
  opacity: 1;
}

.search_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search_box input {
  flex: 1;
  width: auto;
  width: calc(100% - 30px);
}

.search_box button {
  width: 20px;
  padding: 0;
  margin-left: 5px;
}

.header_search form,
.side_search_sec form,
.header_sp_search form  {
  border-bottom: 1px solid #CCCCCC;
  padding: 12px 0;
}
.header_search form input,
.side_search_sec form input,
.header_sp_search form input {
  font-size: 1.6rem;
}
.header_search form input:focus,
.side_search_sec form input:focus,
.header_sp_search form input:focus  {
  outline: none;
}
.header_search button,
.side_search_sec button,
.header_sp_search button  {
  background: transparent;
}


.header_sp_search {
  display: none;
}

.openbtn {
  display: none;
}

@media screen and (min-width: 901px){
  .header_nav > ul > li > a {
    min-height: 80px;
    padding: 0 10px;
  }

  

  .header_nav > ul > li ul {
    position: absolute;
    top: 80px;
    background-color: white;
    border-top: 1px solid #E0E0E0;
    width: max-content;
    left: 0px;
    transition: all 0.2s ease;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: stretch;
    box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.2);
  }

  .header_nav > ul > li:hover > ul {
    opacity: 1;
    z-index: 1;
    visibility:visible;
  }
  
  .header_nav > ul > li ul li {
    display: flex;
    border-bottom: none;
  }

  .header_nav > ul > li ul li:hover {
    border-bottom: none;
  }

  .header_nav > ul > li ul li a {
    padding: 10px 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 95px;
    border-bottom: none;
  }

  .header_nav > ul > li ul li a:hover {
    opacity: 0.6;
    border-bottom: none;
  }

  .header_nav > ul > li > a {
    position: relative;
  }

  .header_nav > ul > li > a > span {
    transition: all 0.2s ease;
  }

  .header_nav > ul > li > a:hover > span:nth-of-type(1) {
    opacity: 0;
  }
  
  .header_nav > ul > li > a > span:nth-of-type(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    opacity: 0;
    font-weight: bold;
  }
  .header_nav > ul > li > a:hover > span:nth-of-type(2) {
    opacity: 1;
  }

}

@media screen and (max-width: 900px){
  .header_main {
    justify-content: space-between;
    width: 100%;
  }
  .header_nav {
    position: fixed;
    top: 80px;
    left: 0;
    background-color: #DEE7F1;
    width: 100%;
    border-bottom: 4px solid white;
    padding: 30px 20px;
    display: none;
  }

  .header_nav > ul {
    display: block;
    width: 100%;

    text-align: center;
    margin-bottom: 30px;
  }

  .header_nav > ul > li ul {
    padding-left: 20px;
  }

  .header_nav > ul > li ul a::before {
    content: '-';
    margin-right: 5px;
  }

  .header_nav > ul > li > a > span:nth-of-type(2) {
    display: none;
  }
  .header_nav > ul.japanese_menu {
    display: none;
  }
  .header_nav > ul > li:not(:last-of-type) {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .header_search {
    display: none;
  }

  .header_sp_search {
    display: flex;
  }
  .openbtn{
    display: block;
    position: relative;
    background:#57a2c7;
    cursor: pointer;
      width: 50px;
      height:50px;
    border-radius: 5px;
  }
  
  /*ボタン内側*/
  .openbtn span{
      display: inline-block;
      transition: all .4s;/*アニメーションの設定*/
      position: absolute;
      left: 14px;
      height: 3px;
      border-radius: 2px;
    background: #fff;
      width: 45%;
    }
  
  .openbtn span:nth-of-type(1) {
    top:15px; 
  }
  
  .openbtn span:nth-of-type(2) {
    top:23px;
  }
  
  .openbtn span:nth-of-type(3) {
    top:31px;
  }
  
  
  .openbtn.active span:nth-of-type(1) {
      top: 18px;
      left: 18px;
      transform: translateY(6px) rotate(-45deg);
      width: 30%;
  }
  
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
  }
  
  .openbtn.active span:nth-of-type(3){
      top: 30px;
      left: 18px;
      transform: translateY(-6px) rotate(45deg);
      width: 30%;
  }
}


/***SNSフロート***/
.sns_float {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  bottom: 10px;
  right: 25px;
}

.sns_float > a:first-of-type {
  margin-bottom: 8px;
}

.sns_float figure {
  max-width: 32px;
}

@media screen and (max-width: 600px){
  .sns_float {
    display: none;
  }
  .header_sp_search {
    justify-content: center;
  }
}

/***スクロールボタン***/
.scroll_float {
  position: fixed;
  right: 33px;
  bottom: 100px;
  transform-origin: 100% 0;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.scroll_float p {
  font-size: 1.4rem;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.scroll_float p::after {
  width: 32px;
  height: 1px;
  background-color: #707070;
  margin-left: 10px;
  content: '';
}
@media screen and (max-width: 600px){
  .scroll_float {
    right: 10px;
    bottom: 10px;
  }
}

/***フッター***/
footer {
  background-color: #F1F1F1;
  padding: 60px 0 40px;
}


footer .footer_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #999999;
}

.footer_nav > ul > li {
  margin-bottom: 35px;
}

.footer_nav a {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
}

.footer_nav > ul > li > a {
  font-weight: 500;
}

.footer_nav > ul > li > ul > li {
  margin-top: 15px;
}

.footer_nav > ul > li > ul > li a {
  margin-left: 10px;
}

.footer_middle {
  padding-top: 50px;
  padding-bottom: 25px;
}

.footer_middle .footer_logo {
  max-width: 120px;
  margin-bottom: 16px;
}

.footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer_bottom .left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer_bottom .page_link {
  display: flex;
  margin-right: 40px;
}

.footer_bottom .page_link li:not(:last-of-type) {
  margin-right: 20px;
}

.footer_bottom .page_link a {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
}

.footer_bottom .footer_sns {
  display: flex;
  align-items: center;
}

.footer_bottom .footer_sns a{
  width: 32px;
}

.footer_bottom .footer_sns a:not(:last-of-type) {
  margin-right: 12px;
}

.footer_bottom .right p {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
}

@media screen and (max-width: 800px){


}
@media screen and (max-width: 600px){
  footer .footer_nav {
    flex-direction: column;
  }
}
